Files
sousa-gecko/devtools/client/debugger/index.html
T
Alexandre Poirot 2064ac5d14 Bug 1949437 - [devtools] Avoid loading duplicated debugger modules instances. r=devtools-reviewers,bomsy
These modules are already loaded by the Debugger frontend via the browser loader
instantiated in /index.js and we were loading a copy in the shared global loader.

This also helps the esm-ification of Reps as it ensures loading
all debugger modules in the debugger document global.
Reps modules are expected to be loaded with a document as global scope.

Differential Revision: https://phabricator.services.mozilla.com/D237738
2025-02-26 16:35:51 +00:00

70 lines
2.0 KiB
HTML

<!-- 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 html>
<html dir="">
<head>
<meta
http-equiv="Content-Security-Policy"
content="default-src chrome:; style-src chrome: 'unsafe-inline';"
/>
<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
src="chrome://devtools/content/debugger/index.js"
></script>
</body>
</html>