tor-browser

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

aboutRestartRequired.xhtml (2053B)


      1 <?xml version="1.0" encoding="UTF-8" ?>
      2 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      3   - License, v. 2.0. If a copy of the MPL was not distributed with this
      4   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      5 <!DOCTYPE html>
      6 
      7 <html xmlns="http://www.w3.org/1999/xhtml">
      8  <head>
      9    <meta
     10      http-equiv="Content-Security-Policy"
     11      content="default-src chrome:; object-src 'none'"
     12    />
     13    <meta name="color-scheme" content="light dark" />
     14    <title data-l10n-id="restart-required-title"></title>
     15    <link
     16      rel="stylesheet"
     17      type="text/css"
     18      media="all"
     19      href="chrome://browser/skin/aboutRestartRequired.css"
     20    />
     21    <!-- If the location of the favicon is changed here, the
     22         FAVICON_ERRORPAGE_URL symbol in
     23         toolkit/components/places/src/nsFaviconService.h should be updated. -->
     24    <link
     25      rel="icon"
     26      type="image/png"
     27      id="favicon"
     28      href="chrome://global/skin/icons/info.svg"
     29    />
     30    <link rel="localization" href="branding/brand.ftl" />
     31    <link rel="localization" href="browser/aboutRestartRequired.ftl" />
     32  </head>
     33  <body>
     34    <!-- PAGE CONTAINER (for styling purposes only) -->
     35    <div id="errorPageContainer">
     36      <div id="text-container">
     37        <div class="title" id="title">
     38          <h1
     39            class="title-text"
     40            id="title-text"
     41            data-l10n-id="restart-required-heading"
     42          />
     43        </div>
     44        <div id="errorLongContent">
     45          <div id="errorLongDesc">
     46            <p data-l10n-id="restart-required-intro" />
     47            <p data-l10n-id="window-restoration-info" />
     48          </div>
     49        </div>
     50      </div>
     51      <!-- Restart Button -->
     52      <div id="restartButtonContainer" class="button-container">
     53        <button
     54          id="restart"
     55          data-l10n-id="restart-button-label"
     56          class="primary"
     57          autocomplete="off"
     58        ></button>
     59      </div>
     60    </div>
     61  </body>
     62  <script src="chrome://browser/content/aboutRestartRequired.js" />
     63 </html>