index.html (1066B)
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 <!-- Use force-theme="auto" to force the performance panel UI to use the default 6 Firefox color scheme when loaded in a popup in about:debugging --> 7 <html force-theme="auto"> 8 <head> 9 <meta charset="utf-8" /> 10 <meta name="color-scheme" content="light dark" /> 11 <title>Debugging</title> 12 <meta 13 http-equiv="Content-Security-Policy" 14 content="default-src chrome: resource:; img-src data: chrome: resource: https:; object-src 'none'" 15 /> 16 <link 17 rel="icon" 18 type="image/png" 19 href="chrome://global/skin/icons/developer.svg" 20 /> 21 <link 22 rel="stylesheet" 23 href="chrome://devtools/content/aboutdebugging/aboutdebugging.css" 24 /> 25 <script src="resource://devtools/client/aboutdebugging/initializer.js"></script> 26 </head> 27 <body> 28 <div id="mount"></div> 29 </body> 30 </html>