tor-browser

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

spotlight.html (2181B)


      1 <!doctype html>
      2 
      3 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      4   - License, v. 2.0. If a copy of the MPL was not distributed with this
      5   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      6 
      7 <html>
      8  <head>
      9    <meta
     10      http-equiv="Content-Security-Policy"
     11      content="default-src resource: chrome:; img-src moz-icon: https://www.mozilla.org https://firefox-settings-attachments.cdn.mozilla.net https://addons.mozilla.org blob: chrome:; style-src resource: chrome: 'unsafe-inline'; object-src 'none'"
     12    />
     13    <meta name="referrer" content="no-referrer" />
     14    <link
     15      rel="stylesheet"
     16      type="text/css"
     17      href="chrome://global/skin/in-content/common.css"
     18    />
     19    <link rel="localization" href="branding/brand.ftl" />
     20    <link rel="localization" href="toolkit/branding/brandings.ftl" />
     21    <link rel="localization" href="browser/backupSettings.ftl" />
     22    <link rel="localization" href="browser/newtab/asrouter.ftl" />
     23    <link rel="localization" href="preview/onboarding.ftl" />
     24    <link rel="localization" href="browser/newtab/onboarding.ftl" />
     25    <link rel="localization" href="browser/spotlight.ftl" />
     26    <link rel="localization" href="browser/migrationWizard.ftl" />
     27    <link rel="localization" href="browser/preonboarding.ftl" />
     28    <link rel="localization" href="browser/termsofuse.ftl" />
     29    <link rel="localization" href="browser/featureCallout.ftl" />
     30  </head>
     31  <body
     32    role="dialog"
     33    aria-labelledby="mainContentHeader"
     34    aria-describedby="mainContentSubheader"
     35  >
     36    <script src="chrome://global/content/vendor/react.js"></script>
     37    <script src="chrome://global/content/vendor/react-dom.js"></script>
     38    <script src="chrome://browser/content/spotlight.js"></script>
     39    <script src="chrome://global/content/elements/named-deck.js" async></script>
     40    <script src="chrome://global/content/elements/panel-list.js" async></script>
     41    <script
     42      src="chrome://browser/content/migration/migration-wizard.mjs"
     43      type="module"
     44    ></script>
     45    <script
     46      src="chrome://browser/content/backup/turn-on-scheduled-backups.mjs"
     47      type="module"
     48    ></script>
     49  </body>
     50 </html>