browser/devtools/framework/toolbox-process-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="600"
    18         persist="screenX screenY width height sizemode">
    20   <script type="text/javascript" src="chrome://global/content/globalOverlay.js"/>
    21   <script type="text/javascript" src="toolbox-process-window.js"/>
    22   <script type="text/javascript" src="chrome://global/content/viewSourceUtils.js"/>
    23   <script type="text/javascript" src="chrome://browser/content/utilityOverlay.js"/>
    25   <commandset id="toolbox-commandset">
    26     <command id="toolbox-cmd-close" oncommand="window.close();"/>
    27   </commandset>
    29   <keyset id="toolbox-keyset">
    30     <key id="toolbox-key-close"
    31          key="&closeCmd.key;"
    32          command="toolbox-cmd-close"
    33          modifiers="accel"/>
    34   </keyset>
    36   <!-- This will be used by the Web Console to hold any popups it may create,
    37        for example when viewing network request details. -->
    38   <popupset id="mainPopupSet"></popupset>
    40   <iframe id="toolbox-iframe" flex="1"></iframe>
    41 </window>

mercurial