toolbox-process-window.xul 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  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://devtools/locale/toolbox.dtd" >
  7. %toolboxDTD;
  8. ]>
  9. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  10. <window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  11. id="devtools-toolbox-window"
  12. macanimationtype="document"
  13. fullscreenbutton="true"
  14. windowtype="devtools:toolbox"
  15. width="900" height="600"
  16. persist="screenX screenY width height sizemode">
  17. <script type="text/javascript" src="chrome://global/content/globalOverlay.js"/>
  18. <script type="text/javascript" src="toolbox-process-window.js"/>
  19. <script type="text/javascript" src="chrome://global/content/viewSourceUtils.js"/>
  20. <script type="text/javascript" src="chrome://browser/content/utilityOverlay.js"/>
  21. <commandset id="toolbox-commandset">
  22. <command id="toolbox-cmd-close"/>
  23. </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>
  30. <!-- This will be used by the Web Console to hold any popups it may create,
  31. for example when viewing network request details. -->
  32. <popupset id="mainPopupSet"></popupset>
  33. <vbox id="error-message-container" hidden="true" flex="1">
  34. <box>&browserToolboxErrorMessage;</box>
  35. <textbox multiline="true" id="error-message" flex="1"></textbox>
  36. </vbox>
  37. <tooltip id="aHTMLTooltip" page="true"/>
  38. <iframe id="toolbox-iframe" flex="1" tooltip="aHTMLTooltip"></iframe>
  39. </window>