result-inspector.xul 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?xml version="1.0"?><!-- -*- Mode: xml; tab-width: 2; indent-tabs-mode: nil -*- -->
  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 % dtd1 SYSTEM "chrome://inspector/locale/inspector.dtd"> %dtd1;
  7. <!ENTITY % dtd2 SYSTEM "chrome://inspector/content/util.dtd"> %dtd2;
  8. ]>
  9. <?xul-overlay href="chrome://inspector/content/commandOverlay.xul"?>
  10. <?xul-overlay href="chrome://inspector/content/keysetOverlay.xul"?>
  11. <?xul-overlay href="chrome://inspector/content/popupOverlay.xul"?>
  12. <?xml-stylesheet href="chrome://inspector/skin/inspectorWindow.css"?>
  13. <window class="color-dialog"
  14. title="&Inspector.title;"
  15. xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
  16. <script type="application/x-javascript" src="chrome://inspector/content/ViewerRegistry.js"/>
  17. <script type="application/x-javascript" src="chrome://inspector/content/utils.js"/>
  18. <script type="application/x-javascript" src="chrome://inspector/content/jsutil/xpcom/XPCU.js"/>
  19. <script type="application/x-javascript" src="chrome://inspector/content/jsutil/rdf/RDFU.js"/>
  20. <script type="application/x-javascript" src="chrome://inspector/content/jsutil/rdf/RDFArray.js"/>
  21. <script type="application/x-javascript" src="chrome://inspector/content/jsutil/events/ObserverManager.js"/>
  22. <script type="application/x-javascript" src="chrome://inspector/content/jsutil/xul/FrameExchange.js"/>
  23. <commandset id="cmdsGlobalCommands"/>
  24. <keyset id="ksGlobalKeyset"/>
  25. <popupset id="ppsViewerPopupset"/>
  26. <domi-panelset id="bxPanelSet" flex="1" viewercommandset="cmdsGlobalCommands">
  27. <domi-panel title="&bxDocPanel.title;" flex="1"/>
  28. </domi-panelset>
  29. </window>