browser/devtools/framework/toolbox-process-window.xul

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:3fb4adfafb6a
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 ]>
9
10 <?xml-stylesheet href="chrome://browser/skin/" type="text/css"?>
11
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">
19
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"/>
24
25 <commandset id="toolbox-commandset">
26 <command id="toolbox-cmd-close" oncommand="window.close();"/>
27 </commandset>
28
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>
35
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>
39
40 <iframe id="toolbox-iframe" flex="1"></iframe>
41 </window>

mercurial