tor-browser

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

siteDataRemoveSelected.xhtml (1824B)


      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:; img-src moz-icon: chrome:; ?>
      8 
      9 <window id="SiteDataRemoveSelectedDialog"
     10        width="500"
     11        data-l10n-id="site-data-removing-dialog"
     12        data-l10n-attrs="title"
     13        xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
     14        xmlns:html="http://www.w3.org/1999/xhtml">
     15 <dialog data-l10n-id="site-data-removing-dialog"
     16        data-l10n-attrs="buttonlabelaccept">
     17 
     18  <linkset>
     19    <html:link rel="stylesheet" href="chrome://global/skin/global.css" />
     20    <html:link
     21      rel="stylesheet"
     22      href="chrome://browser/skin/preferences/siteDataSettings.css"
     23    />
     24 
     25    <html:link rel="localization" href="browser/preferences/siteDataSettings.ftl"/>
     26  </linkset>
     27 
     28  <hbox>
     29    <vbox>
     30      <image class="question-icon"/>
     31    </vbox>
     32    <vbox flex="1">
     33      <!-- Only show this label on OS X because of no dialog title -->
     34      <label id="removing-label"
     35             data-l10n-id="site-data-removing-header"
     36 #ifndef XP_MACOSX
     37             hidden="true"
     38 #endif
     39      />
     40      <separator class="thin"/>
     41      <description id="removing-description" data-l10n-id="site-data-removing-desc"/>
     42    </vbox>
     43  </hbox>
     44    <separator class="multi-site"/>
     45 
     46    <label data-l10n-id="site-data-removing-table" class="multi-site"/>
     47    <separator class="thin multi-site"/>
     48    <richlistbox id="removalList" class="theme-listbox  multi-site" flex="1"/>
     49  <!-- Load the script after the elements for layout issues (bug 1501755). -->
     50  <script src="chrome://browser/content/preferences/dialogs/siteDataRemoveSelected.js"/>
     51 </dialog>
     52 </window>