tor-browser

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

sidebar-history.html (1671B)


      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 
      5 <!doctype html>
      6 <html>
      7  <head>
      8    <meta charset="utf-8" />
      9    <meta
     10      http-equiv="Content-Security-Policy"
     11      content="default-src resource: chrome:; object-src 'none'; img-src data: chrome:;"
     12    />
     13    <meta name="color-scheme" content="light dark" />
     14    <title data-l10n-id="sidebar-history-title"></title>
     15    <link rel="localization" href="branding/brand.ftl" />
     16    <link rel="localization" href="browser/firefoxView.ftl" />
     17    <link rel="localization" href="browser/sidebar.ftl" />
     18    <link rel="localization" href="toolkit/branding/brandings.ftl" />
     19    <link rel="localization" href="browser/places.ftl" />
     20    <link
     21      rel="stylesheet"
     22      href="chrome://browser/content/sidebar/sidebar.css"
     23    />
     24    <script
     25      type="module"
     26      src="chrome://browser/content/firefoxview/fxview-tab-list.mjs"
     27    ></script>
     28    <script
     29      type="module"
     30      src="chrome://browser/content/firefoxview/fxview-empty-state.mjs"
     31    ></script>
     32    <script
     33      type="module"
     34      src="chrome://browser/content/sidebar/sidebar-tab-list.mjs"
     35    ></script>
     36    <script
     37      type="module"
     38      src="chrome://browser/content/sidebar/sidebar-history.mjs"
     39    ></script>
     40    <script src="chrome://browser/content/contentTheme.js"></script>
     41    <script src="chrome://global/content/globalOverlay.js"></script>
     42    <script src="chrome://global/content/editMenuOverlay.js"></script>
     43  </head>
     44 
     45  <body>
     46    <sidebar-history />
     47  </body>
     48 </html>