tor-browser

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

messagepreview.html (981B)


      1 <!--
      2 # This Source Code Form is subject to the terms of the Mozilla Public
      3 # License, v. 2.0. If a copy of the MPL was not distributed with this
      4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      5 -->
      6 <!doctype html>
      7 
      8 <html>
      9  <head>
     10    <meta charset="utf-8" />
     11    <meta
     12      http-equiv="Content-Security-Policy"
     13      content="default-src 'none'; object-src 'none'; script-src resource: chrome:; media-src resource: chrome:; img-src chrome:; style-src resource: chrome:;"
     14    />
     15    <title>about:messagepreview</title>
     16    <link
     17      rel="icon"
     18      href="chrome://browser/content/messagepreview/limelight.svg"
     19    />
     20    <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" />
     21    <link
     22      rel="stylesheet"
     23      href="chrome://browser/content/messagepreview/messagepreview.css"
     24    />
     25    <script src="chrome://browser/content/messagepreview/messagepreview.js"></script>
     26  </head>
     27 
     28  <body>
     29    <div id="light-switch"></div>
     30  </body>
     31 </html>