tor-browser

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

customkeys.html (1154B)


      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
      9      http-equiv="Content-Security-Policy"
     10      content="default-src chrome:; object-src 'none'"
     11    />
     12    <meta charset="utf-8" />
     13    <link rel="localization" href="browser/customkeys.ftl" />
     14    <link
     15      rel="stylesheet"
     16      href="chrome://browser/content/customkeys/customkeys.css"
     17    />
     18    <link rel="stylesheet" href="chrome://global/skin/in-content/common.css" />
     19    <title data-l10n-id="customkeys-title"></title>
     20  </head>
     21  <body>
     22    <p>
     23      <em id="cautionMessage" data-l10n-id="customkeys-caution-message"></em>
     24    </p>
     25    <div>
     26      <label for="search" data-l10n-id="customkeys-search"></label>
     27      <input id="search" type="search" />
     28    </div>
     29    <table id="table"></table>
     30    <div>
     31      <button id="resetAll" data-l10n-id="customkeys-reset-all"></button>
     32    </div>
     33    <script src="chrome://browser/content/customkeys/customkeys.js"></script>
     34  </body>
     35 </html>