tor-browser

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

window.html (1250B)


      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  id="devtools-toolbox-window"
      7  windowtype="devtools:toolbox"
      8  width="900"
      9  height="450"
     10  persist="screenX screenY width height sizemode"
     11 >
     12  <head>
     13    <meta
     14      http-equiv="Content-Security-Policy"
     15      content="default-src chrome: resource:; img-src http: https: data: chrome: resource:; style-src chrome: resource: 'unsafe-inline';"
     16    />
     17    <link rel="stylesheet" href="chrome://global/skin/global.css" />
     18    <link rel="stylesheet" href="chrome://devtools/skin/common.css" />
     19    <link
     20      rel="stylesheet"
     21      href="chrome://devtools/content/framework/browser-toolbox/window.css"
     22    />
     23    <script src="chrome://devtools/content/framework/browser-toolbox/window.js"></script>
     24    <script src="chrome://global/content/viewSourceUtils.js"></script>
     25    <script src="chrome://browser/content/utilityOverlay.js"></script>
     26  </head>
     27  <body>
     28    <div id="status-message-container" hidden>
     29      <div id="status-message-title"></div>
     30      <pre id="status-message"></pre>
     31    </div>
     32  </body>
     33 </html>