blob: 3c087f7c0d5aed35a71fa57d212e164582a7f963 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
|
<?xml version="1.0" encoding="utf-8"?>
<!-- This Source Code Form is subject to the terms of the Mozilla Public
- License, v. 2.0. If a copy of the MPL was not distributed with this
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
<!DOCTYPE window>
<window
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
xmlns:html="http://www.w3.org/1999/xhtml"
csp="default-src chrome: resource:; img-src chrome: resource: data:; object-src 'none'"
role="application"
>
<linkset>
<html:link rel="stylesheet" href="chrome://global/skin/global.css" />
<html:link rel="stylesheet" href="chrome://devtools/skin/toolbox.css" />
<html:link
rel="stylesheet"
href="chrome://devtools/content/shared/components/NotificationBox.css"
/>
<html:link
rel="stylesheet"
href="chrome://devtools/content/framework/components/DebugTargetErrorPage.css"
/>
<html:link
rel="stylesheet"
href="chrome://devtools/content/framework/components/ChromeDebugToolbar.css"
/>
<html:link rel="localization" href="devtools/client/tooltips.ftl" />
</linkset>
<html:link href="chrome://browser/skin/window.svg" rel="shortcut icon" />
<script src="chrome://devtools/content/shared/theme-switching.js" />
<script src="chrome://global/content/viewSourceUtils.js" />
<script src="chrome://devtools/content/framework/toolbox-init.js" />
<vbox id="toolbox-container" role="group">
<div xmlns="http://www.w3.org/1999/xhtml" id="toolbox-error-mount" />
<div xmlns="http://www.w3.org/1999/xhtml" id="toolbox-notificationbox" />
<div
xmlns="http://www.w3.org/1999/xhtml"
id="toolbox-toolbar-mount"
role="toolbar"
/>
<vbox flex="1" class="theme-body">
<box id="toolbox-deck" />
<splitter
id="toolbox-console-splitter"
class="devtools-horizontal-splitter"
hidden="true"
/>
<box id="toolbox-panel-webconsole" collapsed="true" />
</vbox>
<tooltip id="aHTMLTooltip" page="true" />
</vbox>
</window>
|