tor-browser

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

editcacert.xhtml (1164B)


      1 <?xml version="1.0"?>
      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 
      6 <?csp default-src chrome:; style-src chrome: 'unsafe-inline' ?>
      7 
      8 <!DOCTYPE window>
      9 
     10 <window
     11  data-l10n-id="certmgr-edit-ca-cert2"
     12  data-l10n-attrs="style"
     13  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     14  xmlns:html="http://www.w3.org/1999/xhtml"
     15 >
     16  <dialog id="editCaCert" buttons="accept,cancel">
     17    <linkset>
     18      <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     19 
     20      <html:link
     21        rel="localization"
     22        href="security/certificates/certManager.ftl"
     23      />
     24    </linkset>
     25 
     26    <script src="chrome://pippki/content/editcacert.js" />
     27 
     28    <description id="certmsg" />
     29    <separator />
     30    <description data-l10n-id="certmgr-edit-cert-edit-trust" />
     31    <vbox align="start">
     32      <checkbox data-l10n-id="certmgr-edit-cert-trust-ssl" id="trustSSL" />
     33      <checkbox data-l10n-id="certmgr-edit-cert-trust-email" id="trustEmail" />
     34    </vbox>
     35  </dialog>
     36 </window>