tor-browser

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

aboutCompat.html (1529B)


      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    <base />
      9 
     10    <!-- If you change this script tag you must update the hash in the extension's
     11         `content_security_policy` 'sha256-MmZkN2QaIHhfRWPZ8TVRjijTn5Ci1iEabtTEWrt9CCo=' -->
     12    <script>
     13      /* globals browser */ document.head.firstElementChild.href =
     14        browser.runtime.getURL("");
     15    </script>
     16 
     17    <meta charset="utf-8" />
     18    <meta name="color-scheme" content="light dark" />
     19    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
     20    <link rel="stylesheet" href="about-compat/aboutCompat.css" />
     21    <link
     22      rel="stylesheet"
     23      media="screen and (pointer:fine), projection"
     24      type="text/css"
     25      href="chrome://global/skin/in-content/common.css"
     26    />
     27    <link rel="localization" href="toolkit/about/aboutCompat.ftl" />
     28    <title data-l10n-id="text-page-title"></title>
     29    <script src="about-compat/aboutCompat.js"></script>
     30  </head>
     31  <body>
     32    <h1 data-l10n-id="text-page-title"></h1>
     33    <h2 class="tab active" data-l10n-id="label-interventions"></h2>
     34    <table id="interventions">
     35      <col />
     36      <col />
     37      <col />
     38    </table>
     39    <h2 class="tab" data-l10n-id="label-smartblock"></h2>
     40    <table id="smartblock" class="shims">
     41      <col />
     42      <col />
     43      <col />
     44    </table>
     45  </body>
     46 </html>