Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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>