no bug - Bumping Firefox l10n changesets r=release a=l10n-bump DONTBUILD CLOSED TREE
[gecko.git] / devtools / client / debugger / index.html
blob0a7ef58d8ed61d1e483f997c6e1e926956d0daa5
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 dir="">
6 <head>
7 <link
8 rel="stylesheet"
9 type="text/css"
10 href="chrome://devtools/content/shared/sourceeditor/codemirror/lib/codemirror.css"
12 <link
13 rel="stylesheet"
14 type="text/css"
15 href="chrome://devtools/content/shared/sourceeditor/codemirror/addon/dialog/dialog.css"
17 <link
18 rel="stylesheet"
19 type="text/css"
20 href="chrome://devtools/content/shared/sourceeditor/codemirror/mozilla.css"
22 <!-- Needed for the ObjectInspector -->
23 <link
24 rel="stylesheet"
25 type="text/css"
26 href="chrome://devtools/content/shared/components/reps/reps.css"
28 <!-- Needed for the ObjectInspector and the Source Tree -->
29 <link
30 rel="stylesheet"
31 type="text/css"
32 href="chrome://devtools/content/shared/components/Tree.css"
34 <link
35 rel="stylesheet"
36 type="text/css"
37 href="chrome://devtools/content/shared/components/object-inspector/components/ObjectInspector.css"
39 <link
40 rel="stylesheet"
41 type="text/css"
42 href="chrome://devtools/content/debugger/src/debugger.css"
44 <link
45 rel="stylesheet"
46 type="text/css"
47 href="chrome://devtools/content/shared/components/tabs/Tabs.css"
49 </head>
51 <body>
52 <div id="mount" class="theme-body"></div>
53 <script
54 src="chrome://devtools/content/shared/theme-switching.js"
55 ></script>
56 <script>
57 try {
58 const { BrowserLoader } = ChromeUtils.import(
59 "resource://devtools/shared/loader/browser-loader.js"
61 const { require } = BrowserLoader({
62 baseURI: "resource://devtools/client/debugger",
63 window
64 });
65 Debugger = require("devtools/client/debugger/src/main");
66 } catch (e) {
67 dump("Exception happened while loading the debugger:\n");
68 dump(e + "\n");
69 dump(e.stack + "\n");
71 </script>
72 </body>
73 </html>