OLD | NEW |
| (Empty) |
1 <div class="page hidden" id="clearBrowserDataOverlay"> | |
2 <h1 i18n-content="clearBrowsingDataTitle"></h1> | |
3 <h3 i18n-content="clearBrowsingDataLabel"></h3> | |
4 <div id="checkboxListData"> | |
5 <div> | |
6 <input id="deleteBrowsingHistoryCheckbox" | |
7 pref="browser.clear_data.browsing_history" type="checkbox"> | |
8 <label for="deleteBrowsingHistoryCheckbox" | |
9 i18n-content="deleteBrowsingHistoryCheckbox"></label> | |
10 </div> | |
11 <div> | |
12 <input id="deleteDownloadHistoryCheckbox" | |
13 pref="browser.clear_data.download_history" type="checkbox"> | |
14 <label for="deleteDownloadHistoryCheckbox" | |
15 i18n-content="deleteDownloadHistoryCheckbox"></label> | |
16 </div> | |
17 <div> | |
18 <input id="deleteCacheCheckbox" | |
19 pref="browser.clear_data.cache" type="checkbox"> | |
20 <label for="deleteCacheCheckbox" | |
21 i18n-content="deleteCacheCheckbox"></label> | |
22 </div> | |
23 <div> | |
24 <input id="deleteCookiesCheckbox" | |
25 pref="browser.clear_data.cookies" type="checkbox"> | |
26 <label for="deleteCookiesCheckbox" | |
27 i18n-content="deleteCookiesCheckbox"></label> | |
28 </div> | |
29 <div> | |
30 <input id="deletePasswordsCheckbox" | |
31 pref="browser.clear_data.passwords" type="checkbox"> | |
32 <label for="deletePasswordsCheckbox" | |
33 i18n-content="deletePasswordsCheckbox"></label> | |
34 </div> | |
35 <div> | |
36 <input id="deleteFormDataCheckbox" | |
37 pref="browser.clear_data.form_data" type="checkbox"> | |
38 <label for="deleteFormDataCheckbox" | |
39 i18n-content="deleteFormDataCheckbox"></label> | |
40 </div> | |
41 </div> | |
42 <div> | |
43 <label for="" i18n-content="clearBrowsingDataTimeLabel"></label> | |
44 <select id="clearBrowsingDataTimePeriod" | |
45 i18n-options="clearBrowsingDataTimeList" | |
46 pref="browser.clear_data.time_period"></select> | |
47 </div> | |
48 <div class="action-area"> | |
49 <span id="cbdThrobber"></span> | |
50 <div class="button-strip"> | |
51 <button id="clearBrowsingDataDismiss" i18n-content="cancel" | |
52 onclick="ClearBrowserDataOverlay.dismiss();"> | |
53 </button> | |
54 <button id="clearBrowsingDataCommit" | |
55 i18n-content="clearBrowsingDataCommit"> | |
56 </button> | |
57 </div> | |
58 </div> | |
59 <hr> | |
60 <a target="_blank" i18n-content="flash_storage_settings" | |
61 i18n-values="href:flash_storage_url"></a> | |
62 </div> | |
OLD | NEW |