summaryrefslogtreecommitdiffstats
path: root/devtools/client/framework/toolbox.xhtml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 19:33:14 +0000
commit36d22d82aa202bb199967e9512281e9a53db42c9 (patch)
tree105e8c98ddea1c1e4784a60a5a6410fa416be2de /devtools/client/framework/toolbox.xhtml
parentInitial commit. (diff)
downloadfirefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz
firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devtools/client/framework/toolbox.xhtml')
-rw-r--r--devtools/client/framework/toolbox.xhtml47
1 files changed, 47 insertions, 0 deletions
diff --git a/devtools/client/framework/toolbox.xhtml b/devtools/client/framework/toolbox.xhtml
new file mode 100644
index 0000000000..53e68f669e
--- /dev/null
+++ b/devtools/client/framework/toolbox.xhtml
@@ -0,0 +1,47 @@
+<?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/. -->
+<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
+<?xml-stylesheet href="chrome://devtools/skin/toolbox.css" type="text/css"?>
+<?xml-stylesheet href="chrome://devtools/content/shared/components/NotificationBox.css" type="text/css"?>
+<?xml-stylesheet href="chrome://devtools/content/framework/components/DebugTargetErrorPage.css" type="text/css"?>
+<?xml-stylesheet href="chrome://devtools/content/framework/components/ChromeDebugToolbar.css" type="text/css"?>
+
+<!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="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>