tor-browser

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

index.xhtml (1553B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 
      3 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
      4 
      5 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      6   - License, v. 2.0. If a copy of the MPL was not distributed with this
      7   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      8 <html xmlns="http://www.w3.org/1999/xhtml" dir="">
      9  <head>
     10    <meta
     11      http-equiv="Content-Security-Policy"
     12      content="default-src chrome:; style-src chrome: 'unsafe-inline';"
     13    />
     14    <link
     15      rel="stylesheet"
     16      href="chrome://devtools/skin/widgets.css"
     17      type="text/css"
     18    />
     19    <link
     20      rel="stylesheet"
     21      type="text/css"
     22      href="chrome://devtools/content/shared/components/Tree.css"
     23    />
     24    <link
     25      rel="stylesheet"
     26      href="chrome://devtools/skin/memory.css"
     27      type="text/css"
     28    />
     29    <link
     30      rel="stylesheet"
     31      href="chrome://devtools/skin/components-frame.css"
     32      type="text/css"
     33    />
     34    <link
     35      rel="stylesheet"
     36      href="chrome://devtools/skin/components-h-split-box.css"
     37      type="text/css"
     38    />
     39  </head>
     40  <body class="theme-body">
     41    <div id="app"></div>
     42 
     43    <script
     44      src="chrome://devtools/content/shared/theme-switching.js"
     45      defer="true"
     46    ></script>
     47 
     48    <script
     49      src="chrome://global/content/third_party/d3/d3.js"
     50      defer="true"
     51    ></script>
     52 
     53    <script
     54      src="chrome://devtools/content/shared/vendor/dagre-d3.js"
     55      defer="true"
     56    ></script>
     57  </body>
     58 </html>