tor-browser

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

aboutwelcome.html (2403B)


      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 file,
      3   - You can obtain one at http://mozilla.org/MPL/2.0/. -->
      4 
      5 <!doctype html>
      6 <html>
      7  <head>
      8    <meta charset="utf-8" />
      9    <meta name="color-scheme" content="light dark" />
     10    <meta
     11      http-equiv="Content-Security-Policy"
     12      content="default-src 'none'; object-src 'none'; script-src resource: chrome:; media-src resource: chrome: https://assets.mozilla.net  https://www.mozilla.org; connect-src https:; img-src https: data: blob: chrome:; style-src resource: chrome:;"
     13    />
     14    <title data-l10n-id="onboarding-welcome-header"></title>
     15    <link
     16      rel="icon"
     17      type="image/png"
     18      href="chrome://branding/content/icon32.png"
     19    />
     20    <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" />
     21    <link
     22      rel="stylesheet"
     23      href="chrome://browser/content/aboutwelcome/aboutwelcome.css"
     24    />
     25    <link rel="localization" href="branding/brand.ftl" />
     26    <link rel="localization" href="browser/backupSettings.ftl" />
     27    <link rel="localization" href="preview/onboarding.ftl" />
     28    <link rel="localization" href="browser/newtab/onboarding.ftl" />
     29    <link rel="localization" href="browser/spotlight.ftl" />
     30    <link rel="localization" href="browser/migrationWizard.ftl" />
     31    <link rel="localization" href="toolkit/branding/brandings.ftl" />
     32  </head>
     33  <body>
     34    <div
     35      id="multi-stage-message-root"
     36      class="welcome-container"
     37      role="presentation"
     38    ></div>
     39    <script src="chrome://global/content/vendor/react.js"></script>
     40    <script src="chrome://global/content/vendor/react-dom.js"></script>
     41    <script src="chrome://browser/content/contentTheme.js"></script>
     42    <script src="chrome://browser/content/aboutwelcome/aboutwelcome.bundle.js"></script>
     43    <script src="chrome://global/content/elements/named-deck.js" async></script>
     44    <script src="chrome://global/content/elements/panel-list.js" async></script>
     45    <script
     46      src="chrome://browser/content/migration/migration-wizard.mjs"
     47      type="module"
     48    ></script>
     49    <script
     50      src="chrome://browser/content/backup/restore-from-backup.mjs"
     51      type="module"
     52    ></script>
     53    <script
     54      src="chrome://global/content/elements/moz-support-link.mjs"
     55      type="module"
     56    ></script>
     57  </body>
     58 </html>