tor-browser

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

aboutUnloads.html (2353B)


      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 <!doctype html>
      5 <html>
      6  <head>
      7    <title data-l10n-id="about-unloads-page-title"></title>
      8    <meta
      9      http-equiv="Content-Security-Policy"
     10      content="default-src chrome:; object-src 'none'"
     11    />
     12    <meta charset="utf-8" />
     13    <meta name="color-scheme" content="light dark" />
     14    <link
     15      rel="stylesheet"
     16      href="chrome://global/skin/in-content/info-pages.css"
     17    />
     18    <link
     19      rel="stylesheet"
     20      href="chrome://browser/content/tabunloader/aboutUnloads.css"
     21    />
     22    <link rel="localization" href="browser/aboutUnloads.ftl" />
     23    <link rel="localization" href="branding/brand.ftl" />
     24    <script src="chrome://browser/content/tabunloader/aboutUnloads.js"></script>
     25  </head>
     26  <body>
     27    <h1 data-l10n-id="about-unloads-page-title"></h1>
     28    <p data-l10n-id="about-unloads-intro"></p>
     29    <p data-l10n-id="about-unloads-learn-more">
     30      <a
     31        data-l10n-name="doc-link"
     32        href="https://firefox-source-docs.mozilla.org/browser/tabunloader/"
     33      >
     34      </a>
     35    </p>
     36    <div class="control-panel">
     37      <div><span id="label-last-updated"></span></div>
     38      <button
     39        id="button-unload"
     40        data-l10n-id="about-unloads-button-unload"
     41      ></button>
     42    </div>
     43    <table class="tab-table">
     44      <thead>
     45        <tr>
     46          <th data-l10n-id="about-unloads-column-priority" />
     47          <th data-l10n-id="about-unloads-column-host" />
     48          <th data-l10n-id="about-unloads-column-last-accessed" />
     49          <th data-l10n-id="about-unloads-column-weight" />
     50          <th data-l10n-id="about-unloads-column-sortweight" />
     51          <th data-l10n-id="about-unloads-column-memory" />
     52          <th data-l10n-id="about-unloads-column-processes" />
     53        </tr>
     54      </thead>
     55      <tbody>
     56        <tr id="no-unloadable-tab-message">
     57          <td data-l10n-id="about-unloads-no-unloadable-tab" colspan="8"></td>
     58        </tr>
     59      </tbody>
     60    </table>
     61 
     62    <template name="tab-table-row">
     63      <tr>
     64        <td></td>
     65        <td></td>
     66        <td></td>
     67        <td></td>
     68        <td></td>
     69        <td></td>
     70        <td></td>
     71      </tr>
     72    </template>
     73  </body>
     74 </html>