tor-browser

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

textrecognition.html (2110B)


      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 http-equiv="Content-Security-Policy"
     10        content="default-src chrome:; object-src 'none';">
     11  <link rel="stylesheet" type="text/css"
     12        href="chrome://global/skin/in-content/common.css">
     13  <link rel="stylesheet" type="text/css"
     14        href="chrome://browser/content/textrecognition/textrecognition.css">
     15  <link rel="localization" href="browser/textRecognition.ftl"/>
     16  <script type="module" src="chrome://browser/content/textrecognition/textrecognition.mjs"></script>
     17  <!-- The title is available to screen readers only -->
     18  <title data-l10n-id="text-recognition-modal-accessible-modal-title"></title>
     19 </head>
     20 <body>
     21  <div class="textRecognition">
     22    <div class="textRecognitionHeader" id="text-recognition-header-loading"">
     23      <span class="textRecognitionThrobber"></span>
     24      <span data-l10n-id="text-recognition-modal-searching-title"></span>
     25    </div>
     26    <div class="textRecognitionHeader" id="text-recognition-header-results">
     27      <img class="textRecognitionSuccessIcon" src="chrome://global/skin/icons/check.svg" role="presentation"/>
     28      <span data-l10n-id="text-recognition-modal-results-title"></span>
     29    </div>
     30    <div class="textRecognitionHeader" id="text-recognition-header-no-results">
     31      <img class="textRecognitionNoResultIcon" src="chrome://global/skin/icons/warning.svg" role="presentation"/>
     32      <span data-l10n-id="text-recognition-modal-no-results-title">
     33        <a data-l10n-name="error-link" href="https://support.mozilla.org/1/firefox/%VERSION%/%OS%/%LOCALE%/text-recognition"></a>
     34      </span>
     35    </div>
     36    <div class="textRecognitionText" role="document"></div>
     37    <div class="textRecognitionFooter">
     38      <button data-l10n-id="text-recognition-modal-close-button" type="button" id="text-recognition-close" class="primary"></button>
     39    </div>
     40  </div>
     41 </body>
     42 </html>