Source code
Revision control
Copy as Markdown
Other Tools
<!-- 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
<!DOCTYPE html>
<html dir="">
<head>
<link
rel="stylesheet"
type="text/css"
href="chrome://devtools/content/shared/sourceeditor/codemirror/lib/codemirror.css"
/>
<link
rel="stylesheet"
type="text/css"
href="chrome://devtools/content/shared/sourceeditor/codemirror/addon/dialog/dialog.css"
/>
<link
rel="stylesheet"
type="text/css"
href="chrome://devtools/content/shared/sourceeditor/codemirror/mozilla.css"
/>
<!-- Needed for the ObjectInspector -->
<link
rel="stylesheet"
type="text/css"
href="chrome://devtools/content/shared/components/reps/reps.css"
/>
<!-- Needed for the ObjectInspector and the Source Tree -->
<link
rel="stylesheet"
type="text/css"
href="chrome://devtools/content/shared/components/Tree.css"
/>
<link
rel="stylesheet"
type="text/css"
href="chrome://devtools/content/shared/components/object-inspector/components/ObjectInspector.css"
/>
<link
rel="stylesheet"
type="text/css"
href="chrome://devtools/content/debugger/src/debugger.css"
/>
<link
rel="stylesheet"
type="text/css"
href="chrome://devtools/content/shared/components/tabs/Tabs.css"
/>
<link
rel="stylesheet"
type="text/css"
href="chrome://devtools/skin/components-frame.css"
/>
</head>
<body>
<div id="mount" class="theme-body"></div>
<script
src="chrome://devtools/content/shared/theme-switching.js"
></script>
<script>
try {
const { BrowserLoader } = ChromeUtils.importESModule(
"resource://devtools/shared/loader/browser-loader.sys.mjs"
);
const { require } = BrowserLoader({
window
});
Debugger = require("devtools/client/debugger/src/main");
} catch (e) {
dump("Exception happened while loading the debugger:\n");
dump(e + "\n");
dump(e.stack + "\n");
}
</script>
</body>
</html>