toolbox.xhtml (2215B)
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 6 <?csp default-src chrome: resource:; img-src chrome: resource: data:; object-src 7 'none'; ?> 8 9 <!DOCTYPE window> 10 <window 11 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 12 xmlns:html="http://www.w3.org/1999/xhtml" 13 role="application" 14 > 15 <linkset> 16 <html:link rel="stylesheet" href="chrome://global/skin/global.css" /> 17 <html:link rel="stylesheet" href="chrome://devtools/skin/toolbox.css" /> 18 <html:link 19 rel="stylesheet" 20 href="chrome://devtools/content/shared/components/NotificationBox.css" 21 /> 22 <html:link 23 rel="stylesheet" 24 href="chrome://devtools/content/framework/components/DebugTargetErrorPage.css" 25 /> 26 <html:link 27 rel="stylesheet" 28 href="chrome://devtools/content/framework/components/ChromeDebugToolbar.css" 29 /> 30 <html:link 31 rel="stylesheet" 32 href="chrome://devtools/content/shared/components/AppErrorBoundary.css" 33 /> 34 35 <html:link rel="localization" href="devtools/client/tooltips.ftl" /> 36 </linkset> 37 38 <html:link href="chrome://browser/skin/window.svg" rel="shortcut icon" /> 39 <script src="chrome://devtools/content/shared/theme-switching.js" /> 40 <script src="chrome://global/content/viewSourceUtils.js" /> 41 42 <script src="chrome://devtools/content/framework/toolbox-init.js" /> 43 44 <vbox id="toolbox-container" role="group"> 45 <div xmlns="http://www.w3.org/1999/xhtml" id="toolbox-error-mount" /> 46 <div xmlns="http://www.w3.org/1999/xhtml" id="toolbox-notificationbox" /> 47 <div 48 xmlns="http://www.w3.org/1999/xhtml" 49 id="toolbox-toolbar-mount" 50 role="toolbar" 51 /> 52 <vbox flex="1" class="panels-and-console theme-body"> 53 <box id="toolbox-deck" /> 54 <splitter 55 id="toolbox-console-splitter" 56 class="devtools-horizontal-splitter" 57 hidden="true" 58 /> 59 <box id="toolbox-panel-webconsole" collapsed="true" /> 60 </vbox> 61 <tooltip id="aHTMLTooltip" page="true" /> 62 </vbox> 63 </window>