safeMode.xhtml (1590B)
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: resource:; style-src chrome: 'unsafe-inline'; ?> 8 9 <window 10 xmlns:html="http://www.w3.org/1999/xhtml" 11 xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 12 data-l10n-id="troubleshoot-mode-window" 13 data-l10n-attrs="title,style" 14 > 15 <dialog 16 id="safeModeDialog" 17 buttons="accept,extra1" 18 buttonidaccept="start-troubleshoot-mode" 19 buttonidextra1="refresh-profile" 20 > 21 <linkset> 22 <html:link rel="stylesheet" href="chrome://global/skin/global.css" /> 23 <html:link 24 rel="stylesheet" 25 href="chrome://browser/content/safeMode.css" 26 /> 27 28 <html:link rel="localization" href="branding/brand.ftl" /> 29 <html:link rel="localization" href="browser/safeMode.ftl" /> 30 </linkset> 31 32 <script src="chrome://browser/content/safeMode.js" /> 33 34 <vbox id="autoSafeMode" hidden="true"> 35 <description data-l10n-id="auto-safe-mode-description" /> 36 </vbox> 37 38 <vbox id="safeMode"> 39 <label data-l10n-id="troubleshoot-mode-description" /> 40 <separator class="thin" /> 41 <label 42 id="resetProfileInstead" 43 data-l10n-id="skip-troubleshoot-refresh-profile" 44 /> 45 </vbox> 46 47 <vbox id="resetProfile" hidden="true"> 48 <label data-l10n-id="refresh-profile-instead" /> 49 </vbox> 50 51 <separator class="thin" /> 52 </dialog> 53 </window>