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<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
6<?xml-stylesheet href="chrome://devtools/skin/toolbox.css" type="text/css"?>
7<?xml-stylesheet href="chrome://devtools/content/shared/components/NotificationBox.css" type="text/css"?>
8<?xml-stylesheet href="chrome://devtools/content/framework/components/DebugTargetErrorPage.css" type="text/css"?>
9
10
11<!DOCTYPE window>
12<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
13        xmlns:html="http://www.w3.org/1999/xhtml"
14        csp="default-src chrome: resource:; img-src chrome: resource: data:; object-src 'none'" role="application">
15  <linkset>
16    <html:link rel="localization" href="devtools/client/tooltips.ftl"/>
17  </linkset>
18
19  <html:link href="chrome://browser/skin/window.svg" rel="shortcut icon"/>
20  <script src="chrome://devtools/content/shared/theme-switching.js"/>
21  <script src="chrome://global/content/viewSourceUtils.js"/>
22
23  <script src="chrome://devtools/content/framework/toolbox-init.js"/>
24
25  <vbox id="toolbox-container" flex="1" role="group">
26    <div xmlns="http://www.w3.org/1999/xhtml" id="toolbox-error-mount"/>
27    <div xmlns="http://www.w3.org/1999/xhtml" id="toolbox-notificationbox"/>
28    <div xmlns="http://www.w3.org/1999/xhtml" id="toolbox-toolbar-mount"
29         role="toolbar" />
30    <vbox flex="1" class="theme-body">
31      <!-- Set large flex to allow the toolbox-panel-webconsole to have a
32           height set to a small value without flexing to fill up extra
33           space. There must be a flex on both to ensure that the console
34           panel itself is sized properly -->
35      <box id="toolbox-deck" flex="10000" minheight="75" />
36      <splitter id="toolbox-console-splitter" class="devtools-horizontal-splitter" hidden="true" />
37      <box minheight="75" flex="1" id="toolbox-panel-webconsole" collapsed="true" />
38    </vbox>
39    <tooltip id="aHTMLTooltip" page="true" />
40  </vbox>
41</window>
42