OLD | NEW |
(Empty) | |
| 1 <div id="clearBrowserDataOverlay" class="page hidden"> |
| 2 <span i18n-content="clearBrowserDataTitle" id="cbdTitle"></span> |
| 3 <div id="cbdContentArea"> |
| 4 <span i18n-content="clearBrowserDataLabel"></span> |
| 5 <select id="clearBrowserDataTimePeriod" |
| 6 i18n-options="clearBrowserDataTimeList" |
| 7 pref="browser.clear_data.time_period" |
| 8 dataType="number"> |
| 9 </select> |
| 10 <label class="checkbox"> |
| 11 <input id="deleteBrowsingHistoryCheckbox" |
| 12 pref="browser.clear_data.browsing_history" type="checkbox"> |
| 13 <span i18n-content="deleteBrowsingHistoryCheckbox"></span> |
| 14 </label> |
| 15 <label class="checkbox"> |
| 16 <input id="deleteDownloadHistoryCheckbox" |
| 17 pref="browser.clear_data.download_history" type="checkbox"> |
| 18 <span i18n-content="deleteDownloadHistoryCheckbox"></span> |
| 19 </label> |
| 20 <label class="checkbox"> |
| 21 <input id="deleteCacheCheckbox" |
| 22 pref="browser.clear_data.cache" type="checkbox"> |
| 23 <span i18n-content="deleteCacheCheckbox"></span> |
| 24 </label> |
| 25 <label class="checkbox"> |
| 26 <input id="deleteCookiesCheckbox" |
| 27 pref="browser.clear_data.cookies" type="checkbox"> |
| 28 <span id="deleteCookiesLabel"></span> |
| 29 </label> |
| 30 <label class="checkbox"> |
| 31 <input id="deletePasswordsCheckbox" |
| 32 pref="browser.clear_data.passwords" type="checkbox"> |
| 33 <span i18n-content="deletePasswordsCheckbox"></span> |
| 34 </label> |
| 35 <label class="checkbox"> |
| 36 <input id="deleteFormDataCheckbox" |
| 37 pref="browser.clear_data.form_data" type="checkbox"> |
| 38 <span i18n-content="deleteFormDataCheckbox"></span> |
| 39 </label> |
| 40 </div> |
| 41 <div id="cbdActionArea"> |
| 42 <a target="_blank" i18n-content="flash_storage_settings" |
| 43 i18n-values="href:flash_storage_url"></a> |
| 44 <span id="cbdThrobber"></span> |
| 45 <div class="button-strip"> |
| 46 <button id="clearBrowserDataDismiss" i18n-content="cancel"></button> |
| 47 <button id="clearBrowserDataCommit" |
| 48 i18n-content="clearBrowserDataCommit"> |
| 49 </button> |
| 50 </div> |
| 51 </div> |
| 52 </div> |
OLD | NEW |