1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/devtools/framework/toolbox-process-window.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,41 @@ 1.4 +<?xml version="1.0" encoding="utf-8"?> 1.5 +<!-- This Source Code Form is subject to the terms of the Mozilla Public 1.6 + - License, v. 2.0. If a copy of the MPL was not distributed with this 1.7 + - file, You can obtain one at http://mozilla.org/MPL/2.0/. --> 1.8 +<!DOCTYPE window [ 1.9 +<!ENTITY % toolboxDTD SYSTEM "chrome://browser/locale/devtools/toolbox.dtd" > 1.10 + %toolboxDTD; 1.11 +]> 1.12 + 1.13 +<?xml-stylesheet href="chrome://browser/skin/" type="text/css"?> 1.14 + 1.15 +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 1.16 + id="devtools-toolbox-window" 1.17 + macanimationtype="document" 1.18 + fullscreenbutton="true" 1.19 + windowtype="devtools:toolbox" 1.20 + width="900" height="600" 1.21 + persist="screenX screenY width height sizemode"> 1.22 + 1.23 + <script type="text/javascript" src="chrome://global/content/globalOverlay.js"/> 1.24 + <script type="text/javascript" src="toolbox-process-window.js"/> 1.25 + <script type="text/javascript" src="chrome://global/content/viewSourceUtils.js"/> 1.26 + <script type="text/javascript" src="chrome://browser/content/utilityOverlay.js"/> 1.27 + 1.28 + <commandset id="toolbox-commandset"> 1.29 + <command id="toolbox-cmd-close" oncommand="window.close();"/> 1.30 + </commandset> 1.31 + 1.32 + <keyset id="toolbox-keyset"> 1.33 + <key id="toolbox-key-close" 1.34 + key="&closeCmd.key;" 1.35 + command="toolbox-cmd-close" 1.36 + modifiers="accel"/> 1.37 + </keyset> 1.38 + 1.39 + <!-- This will be used by the Web Console to hold any popups it may create, 1.40 + for example when viewing network request details. --> 1.41 + <popupset id="mainPopupSet"></popupset> 1.42 + 1.43 + <iframe id="toolbox-iframe" flex="1"></iframe> 1.44 +</window>