browser/devtools/framework/toolbox-window.xul

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
     3    - License, v. 2.0. If a copy of the MPL was not distributed with this
     4    - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
     5 <!DOCTYPE window [
     6 <!ENTITY % toolboxDTD SYSTEM "chrome://browser/locale/devtools/toolbox.dtd" >
     7  %toolboxDTD;
     8 ]>
    10 <?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
    12 <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
    13         id="devtools-toolbox-window"
    14         macanimationtype="document"
    15         fullscreenbutton="true"
    16         windowtype="devtools:toolbox"
    17         width="900" height="320"
    18         persist="screenX screenY width height sizemode">
    20   <commandset id="toolbox-commandset">
    21     <command id="toolbox-cmd-close" oncommand="window.close();"/>
    22   </commandset>
    24   <keyset id="toolbox-keyset">
    25     <key id="toolbox-key-close"
    26          key="&closeCmd.key;"
    27          command="toolbox-cmd-close"
    28          modifiers="accel"/>
    29   </keyset>
    31   <iframe id="toolbox-iframe" flex="1" forceOwnRefreshDriver=""></iframe>
    32 </window>

mercurial