tor-browser

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

clearDataForSite.xhtml (2085B)


      1 <?xml version="1.0"?>
      2 
      3 <!-- This Source Code Form is subject to the terms of the Mozilla Public
      4   - License, v. 2.0. If a copy of the MPL was not distributed with this
      5   - file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
      6 
      7 <?csp default-src chrome: ?>
      8 
      9 <window
     10  id="clearDataForSiteDialogWindow"
     11  xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     12  xmlns:html="http://www.w3.org/1999/xhtml"
     13  xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     14  aria-describedby="infoTitle"
     15 >
     16  <dialog
     17    id="clearDataForSiteDialog"
     18    buttons="accept,cancel"
     19    defaultButton="accept"
     20    buttonidaccept="clear-data-for-site-dialog-accept-button"
     21    buttonidcancel="clear-data-for-site-dialog-cancel-button"
     22  >
     23    <linkset>
     24      <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     25      <html:link
     26        rel="stylesheet"
     27        href="chrome://global/skin/commonDialog.css"
     28      />
     29      <html:link
     30        rel="stylesheet"
     31        href="chrome://browser/content/places/clearDataForSite.css"
     32      />
     33      <html:link rel="localization" href="browser/clearDataForSite.ftl" />
     34    </linkset>
     35 
     36    <div xmlns="http://www.w3.org/1999/xhtml" id="dialogGrid">
     37      <h4 data-l10n-id="clear-data-for-site-title" id="infoTitle"></h4>
     38      <!-- Use placeholder l10n arg "this site" so dialog height is calculated correctly
     39       at dialog opening before l10n args are updated with actual site name in clearDataForSite.js -->
     40      <p
     41        data-l10n-id="clear-data-for-site-list"
     42        data-l10n-args='{"site": "URL"}'
     43        id="clear-data-for-site-list"
     44      ></p>
     45      <ul>
     46        <li data-l10n-id="clear-data-for-site-browsing-history"></li>
     47        <li data-l10n-id="clear-data-for-site-cookies"></li>
     48        <li data-l10n-id="clear-data-for-site-cache"></li>
     49        <li data-l10n-id="cclear-data-for-site-permissions"></li>
     50      </ul>
     51      <p data-l10n-id="clear-data-for-site-exceptions"></p>
     52    </div>
     53 
     54    <script src="chrome://browser/content/places/clearDataForSite.js" />
     55  </dialog>
     56 </window>