tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

index.html (4476B)


      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
      6  dir=""
      7  id="devtools-webconsole"
      8  windowtype="devtools:webconsole"
      9  width="900"
     10  height="350"
     11  persist="screenX screenY width height sizemode"
     12 >
     13  <head>
     14    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
     15    <meta
     16      http-equiv="Content-Security-Policy"
     17      content="default-src chrome: resource:; img-src chrome: resource: data:; style-src chrome: 'unsafe-inline';"
     18    />
     19    <link rel="stylesheet" href="chrome://global/skin/global.css" />
     20    <link rel="stylesheet" href="chrome://devtools/skin/webconsole.css" />
     21    <link rel="stylesheet" href="chrome://devtools/skin/components-frame.css" />
     22    <link
     23      rel="stylesheet"
     24      href="chrome://devtools/content/shared/components/SmartTrace.css"
     25    />
     26    <link
     27      rel="stylesheet"
     28      href="chrome://devtools/content/shared/components/NotificationBox.css"
     29    />
     30    <link
     31      rel="stylesheet"
     32      href="chrome://devtools/content/shared/components/splitter/GridElementResizer.css"
     33    />
     34    <link
     35      rel="stylesheet"
     36      href="chrome://devtools/content/shared/components/AppErrorBoundary.css"
     37    />
     38    <link
     39      rel="stylesheet"
     40      href="chrome://devtools/content/framework/components/ChromeDebugToolbar.css"
     41    />
     42    <!-- Console components -->
     43    <link
     44      rel="stylesheet"
     45      href="chrome://devtools/content/webconsole/components/App.css"
     46    />
     47    <link
     48      rel="stylesheet"
     49      href="chrome://devtools/content/webconsole/components/Input/EagerEvaluation.css"
     50    />
     51    <link
     52      rel="stylesheet"
     53      href="chrome://devtools/content/webconsole/components/Input/EvaluationNotification.css"
     54    />
     55    <link
     56      rel="stylesheet"
     57      href="chrome://devtools/content/webconsole/components/Input/EvaluationContextSelector.css"
     58    />
     59    <link
     60      rel="stylesheet"
     61      href="chrome://devtools/content/webconsole/components/Input/ReverseSearchInput.css"
     62    />
     63    <!-- CodeMirror CSS -->
     64    <link
     65      rel="stylesheet"
     66      href="chrome://devtools/content/shared/sourceeditor/codemirror/lib/codemirror.css"
     67    />
     68    <link
     69      rel="stylesheet"
     70      href="chrome://devtools/content/shared/sourceeditor/codemirror/addon/dialog/dialog.css"
     71    />
     72    <link
     73      rel="stylesheet"
     74      href="chrome://devtools/content/shared/sourceeditor/codemirror/mozilla.css"
     75    />
     76 
     77    <!-- ObjectInspector/Reps styles -->
     78    <link
     79      rel="stylesheet"
     80      href="chrome://devtools/content/shared/components/reps/reps.css"
     81    />
     82    <link
     83      rel="stylesheet"
     84      href="chrome://devtools/content/shared/components/Tree.css"
     85    />
     86    <link
     87      rel="stylesheet"
     88      href="chrome://devtools/content/shared/components/object-inspector/components/ObjectInspector.css"
     89    />
     90    <!-- Embedded Network Request detail styles -->
     91    <link
     92      rel="stylesheet"
     93      href="chrome://devtools/content/shared/components/Accordion.css"
     94    />
     95    <link
     96      rel="stylesheet"
     97      href="chrome://devtools/content/shared/components/MdnLink.css"
     98    />
     99    <link
    100      rel="stylesheet"
    101      href="chrome://devtools/content/shared/components/tabs/Tabs.css"
    102    />
    103    <link
    104      rel="stylesheet"
    105      href="chrome://devtools/content/shared/components/tree/TreeView.css"
    106    />
    107    <link
    108      rel="stylesheet"
    109      href="chrome://devtools/content/netmonitor/src/assets/styles/variables.css"
    110    />
    111    <link
    112      rel="stylesheet"
    113      href="chrome://devtools/content/netmonitor/src/assets/styles/NetworkDetailsBar.css"
    114    />
    115    <link
    116      rel="stylesheet"
    117      href="chrome://devtools/content/netmonitor/src/assets/styles/StatusCode.css"
    118    />
    119    <link
    120      rel="stylesheet"
    121      href="chrome://devtools/content/netmonitor/src/assets/styles/RequestList.css"
    122    />
    123    <link
    124      rel="stylesheet"
    125      href="chrome://devtools/content/netmonitor/src/assets/styles/UrlPreview.css"
    126    />
    127    <link
    128      rel="stylesheet"
    129      href="chrome://devtools/content/netmonitor/src/assets/styles/HeadersPanel.css"
    130    />
    131 
    132    <script src="chrome://devtools/content/shared/theme-switching.js"></script>
    133  </head>
    134  <body class="theme-sidebar" role="application">
    135    <main
    136      id="app-wrapper"
    137      class="theme-body"
    138      role="document"
    139      aria-live="polite"
    140    ></main>
    141  </body>
    142 </html>