Backed out changeset b71c8c052463 (bug 1943846) for causing mass failures. CLOSED...
[gecko.git] / devtools / client / webconsole / index.html
blob96971b87e33f001ef1963463c1594437026e92b0
1 <!-- This Source Code Form is subject to the terms of the Mozilla Public
2 - License, v. 2.0. If a copy of the MPL was not distributed with this
3 - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
4 <!doctype html>
5 <html
6 dir=""
7 id="devtools-webconsole"
8 windowtype="devtools:webconsole"
9 width="900"
10 height="350"
11 persist="screenX screenY width height sizemode"
13 <head>
14 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
15 <link rel="stylesheet" href="chrome://global/skin/global.css" />
16 <link rel="stylesheet" href="chrome://devtools/skin/webconsole.css" />
17 <link rel="stylesheet" href="chrome://devtools/skin/components-frame.css" />
18 <link
19 rel="stylesheet"
20 href="chrome://devtools/content/shared/components/SmartTrace.css"
22 <link
23 rel="stylesheet"
24 href="chrome://devtools/content/shared/components/NotificationBox.css"
26 <link
27 rel="stylesheet"
28 href="chrome://devtools/content/shared/components/splitter/GridElementResizer.css"
30 <link
31 rel="stylesheet"
32 href="chrome://devtools/content/shared/components/AppErrorBoundary.css"
34 <link
35 rel="stylesheet"
36 href="chrome://devtools/content/framework/components/ChromeDebugToolbar.css"
38 <!-- Console components -->
39 <link
40 rel="stylesheet"
41 href="chrome://devtools/content/webconsole/components/App.css"
43 <link
44 rel="stylesheet"
45 href="chrome://devtools/content/webconsole/components/Input/EagerEvaluation.css"
47 <link
48 rel="stylesheet"
49 href="chrome://devtools/content/webconsole/components/Input/EvaluationNotification.css"
51 <link
52 rel="stylesheet"
53 href="chrome://devtools/content/webconsole/components/Input/EvaluationContextSelector.css"
55 <link
56 rel="stylesheet"
57 href="chrome://devtools/content/webconsole/components/Input/ReverseSearchInput.css"
59 <!-- CodeMirror CSS -->
60 <link
61 rel="stylesheet"
62 href="chrome://devtools/content/shared/sourceeditor/codemirror/lib/codemirror.css"
64 <link
65 rel="stylesheet"
66 href="chrome://devtools/content/shared/sourceeditor/codemirror/addon/dialog/dialog.css"
68 <link
69 rel="stylesheet"
70 href="chrome://devtools/content/shared/sourceeditor/codemirror/mozilla.css"
73 <!-- ObjectInspector/Reps styles -->
74 <link
75 rel="stylesheet"
76 href="chrome://devtools/content/shared/components/reps/reps.css"
78 <link
79 rel="stylesheet"
80 href="chrome://devtools/content/shared/components/Tree.css"
82 <link
83 rel="stylesheet"
84 href="chrome://devtools/content/shared/components/object-inspector/components/ObjectInspector.css"
86 <!-- Embedded Network Request detail styles -->
87 <link
88 rel="stylesheet"
89 href="chrome://devtools/content/shared/components/Accordion.css"
91 <link
92 rel="stylesheet"
93 href="chrome://devtools/content/shared/components/MdnLink.css"
95 <link
96 rel="stylesheet"
97 href="chrome://devtools/content/shared/components/tabs/Tabs.css"
99 <link
100 rel="stylesheet"
101 href="chrome://devtools/content/shared/components/tree/TreeView.css"
103 <link
104 rel="stylesheet"
105 href="chrome://devtools/content/netmonitor/src/assets/styles/variables.css"
107 <link
108 rel="stylesheet"
109 href="chrome://devtools/content/netmonitor/src/assets/styles/NetworkDetailsBar.css"
111 <link
112 rel="stylesheet"
113 href="chrome://devtools/content/netmonitor/src/assets/styles/StatusCode.css"
115 <link
116 rel="stylesheet"
117 href="chrome://devtools/content/netmonitor/src/assets/styles/RequestList.css"
119 <link
120 rel="stylesheet"
121 href="chrome://devtools/content/netmonitor/src/assets/styles/UrlPreview.css"
123 <link
124 rel="stylesheet"
125 href="chrome://devtools/content/netmonitor/src/assets/styles/HeadersPanel.css"
128 <script src="chrome://devtools/content/shared/theme-switching.js"></script>
129 </head>
130 <body class="theme-sidebar" role="application">
131 <main
132 id="app-wrapper"
133 class="theme-body"
134 role="document"
135 aria-live="polite"
136 ></main>
137 </body>
138 </html>