clearSiteData.xhtml (2340B)
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:; style-src chrome: 'unsafe-inline'; ?> 8 9 <window 10 id="ClearSiteDataDialog" 11 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 12 xmlns:html="http://www.w3.org/1999/xhtml" 13 data-l10n-id="clear-site-data-window2" 14 data-l10n-attrs="title, style" 15 persist="width height" 16 > 17 <dialog 18 buttons="accept,cancel" 19 data-l10n-id="clear-site-data-dialog" 20 data-l10n-attrs="buttonlabelaccept, buttonaccesskeyaccept" 21 > 22 <linkset> 23 <html:link rel="stylesheet" href="chrome://global/skin/global.css" /> 24 <html:link 25 rel="stylesheet" 26 href="chrome://browser/skin/preferences/preferences.css" 27 /> 28 <html:link 29 rel="stylesheet" 30 href="chrome://browser/content/preferences/dialogs/clearSiteData.css" 31 /> 32 33 <html:link rel="localization" href="branding/brand.ftl" /> 34 <html:link 35 rel="localization" 36 href="browser/preferences/clearSiteData.ftl" 37 /> 38 </linkset> 39 <script src="chrome://browser/content/preferences/dialogs/clearSiteData.js" /> 40 41 <keyset> 42 <key 43 id="key_close" 44 data-l10n-id="clear-site-data-close-key" 45 modifiers="accel" 46 /> 47 </keyset> 48 49 <vbox class="contentPane"> 50 <description control="url" data-l10n-id="clear-site-data-description" /> 51 <separator class="thin" /> 52 <vbox class="options-container"> 53 <vbox class="option"> 54 <checkbox 55 data-l10n-id="clear-site-data-cookies-empty" 56 id="clearSiteData" 57 checked="true" 58 /> 59 <description 60 class="option-description indent" 61 data-l10n-id="clear-site-data-cookies-info" 62 /> 63 </vbox> 64 <vbox class="option"> 65 <checkbox 66 data-l10n-id="clear-site-data-cache-empty" 67 id="clearCache" 68 checked="true" 69 /> 70 <description 71 class="option-description indent" 72 data-l10n-id="clear-site-data-cache-info" 73 /> 74 </vbox> 75 </vbox> 76 </vbox> 77 </dialog> 78 </window>