index.html (2009B)
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 <meta 8 http-equiv="Content-Security-Policy" 9 content="default-src chrome:; style-src chrome: 'unsafe-inline';" 10 /> 11 <link 12 rel="stylesheet" 13 type="text/css" 14 href="chrome://devtools/content/shared/sourceeditor/codemirror/lib/codemirror.css" 15 /> 16 <link 17 rel="stylesheet" 18 type="text/css" 19 href="chrome://devtools/content/shared/sourceeditor/codemirror/addon/dialog/dialog.css" 20 /> 21 <link 22 rel="stylesheet" 23 type="text/css" 24 href="chrome://devtools/content/shared/sourceeditor/codemirror/mozilla.css" 25 /> 26 <!-- Needed for the ObjectInspector --> 27 <link 28 rel="stylesheet" 29 type="text/css" 30 href="chrome://devtools/content/shared/components/reps/reps.css" 31 /> 32 <!-- Needed for the ObjectInspector and the Source Tree --> 33 <link 34 rel="stylesheet" 35 type="text/css" 36 href="chrome://devtools/content/shared/components/Tree.css" 37 /> 38 <link 39 rel="stylesheet" 40 type="text/css" 41 href="chrome://devtools/content/shared/components/object-inspector/components/ObjectInspector.css" 42 /> 43 <link 44 rel="stylesheet" 45 type="text/css" 46 href="chrome://devtools/content/debugger/src/debugger.css" 47 /> 48 <link 49 rel="stylesheet" 50 type="text/css" 51 href="chrome://devtools/content/shared/components/tabs/Tabs.css" 52 /> 53 <link 54 rel="stylesheet" 55 type="text/css" 56 href="chrome://devtools/skin/components-frame.css" 57 /> 58 </head> 59 60 <body> 61 <div id="mount" class="theme-body"></div> 62 <script 63 src="chrome://devtools/content/shared/theme-switching.js" 64 ></script> 65 <script 66 src="chrome://devtools/content/debugger/index.js" 67 ></script> 68 </body> 69 </html>