tor-browser

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

deletecert.xhtml (1085B)


      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-delete-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="deleteCertificate" buttons="accept,cancel">
     17    <linkset>
     18      <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     19      <html:link
     20        rel="stylesheet"
     21        href="chrome://pippki/content/deletecert.css"
     22      />
     23 
     24      <html:link
     25        rel="localization"
     26        href="security/certificates/certManager.ftl"
     27      />
     28    </linkset>
     29 
     30    <script src="chrome://pippki/content/deletecert.js" />
     31 
     32    <description id="confirm" />
     33    <richlistbox id="certlist" class="box-padded" />
     34    <description id="impact" />
     35  </dialog>
     36 </window>