index.html 1.4 KB

1234567891011121314151617181920212223242526272829303132
  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 rel="stylesheet"
  8. type="text/css"
  9. href="chrome://devtools/content/sourceeditor/codemirror/lib/codemirror.css" />
  10. <link rel="stylesheet"
  11. type="text/css"
  12. href="chrome://devtools/content/sourceeditor/codemirror/addon/dialog/dialog.css" />
  13. <link rel="stylesheet"
  14. type="text/css"
  15. href="chrome://devtools/content/sourceeditor/codemirror/mozilla.css" />
  16. <link rel="stylesheet" type="text/css" href="resource://devtools/client/debugger/new/styles.css" />
  17. </head>
  18. <body>
  19. <div id="mount"></div>
  20. <script type="application/javascript;version=1.8"
  21. src="chrome://devtools/content/shared/theme-switching.js"></script>
  22. <script type="text/javascript">
  23. const { BrowserLoader } = Components.utils.import("resource://devtools/client/shared/browser-loader.js", {});
  24. const { require: devtoolsRequire } = BrowserLoader({
  25. baseURI: "resource://devtools/client/debugger/new/",
  26. window,
  27. });
  28. </script>
  29. <script type="text/javascript" src="resource://devtools/client/debugger/new/bundle.js"></script>
  30. </body>
  31. </html>