aboutTabCrashed.xhtml (3388B)
1 <?xml version="1.0" encoding="UTF-8"?> 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 <!DOCTYPE html> 8 9 <html xmlns="http://www.w3.org/1999/xhtml"> 10 <head> 11 <meta 12 http-equiv="Content-Security-Policy" 13 content="default-src chrome:; object-src 'none'" 14 /> 15 <meta name="color-scheme" content="light dark" /> 16 <link 17 rel="stylesheet" 18 type="text/css" 19 media="all" 20 href="chrome://global/skin/in-content/info-pages.css" 21 /> 22 <link 23 rel="stylesheet" 24 type="text/css" 25 media="all" 26 href="chrome://browser/content/aboutTabCrashed.css" 27 /> 28 <link 29 rel="stylesheet" 30 type="text/css" 31 media="all" 32 href="chrome://browser/skin/aboutTabCrashed.css" 33 /> 34 <link rel="localization" href="branding/brand.ftl" /> 35 <link rel="localization" href="browser/aboutTabCrashed.ftl" /> 36 37 <title data-l10n-id="crashed-title"></title> 38 </head> 39 40 <body> 41 <div id="main" class="container" multiple="false"> 42 <div class="title"> 43 <h1 class="title-text" data-l10n-id="crashed-header"></h1> 44 </div> 45 46 <div class="offers"> 47 <h2 data-l10n-id="crashed-offer-help"></h2> 48 <p 49 id="offerHelpMessageSingle" 50 data-l10n-id="crashed-single-offer-help-message" 51 ></p> 52 <p 53 id="offerHelpMessageMultiple" 54 data-l10n-id="crashed-multiple-offer-help-message" 55 ></p> 56 </div> 57 58 <div id="reportBox"> 59 <h2 data-l10n-id="crashed-request-help"></h2> 60 <p data-l10n-id="crashed-request-help-message"></p> 61 62 <h2 data-l10n-id="crashed-request-report-title"></h2> 63 64 <label class="toggle-container-with-text"> 65 <input type="checkbox" id="sendReport" role="checkbox" /> 66 <span data-l10n-id="crashed-send-report-2"></span> 67 </label> 68 69 <ul id="options"> 70 <li> 71 <textarea 72 id="comments" 73 data-l10n-id="crashed-comment" 74 rows="4" 75 ></textarea> 76 </li> 77 78 <li> 79 <label class="toggle-container-with-text"> 80 <input type="checkbox" id="includeURL" role="checkbox" /> 81 <span data-l10n-id="crashed-include-URL-2"></span> 82 </label> 83 </li> 84 </ul> 85 86 <div id="requestAutoSubmit" hidden="true"> 87 <h2 data-l10n-id="crashed-request-auto-submit-title"></h2> 88 <label class="toggle-container-with-text"> 89 <input type="checkbox" id="autoSubmit" role="checkbox" /> 90 <span data-l10n-id="crashed-auto-submit-checkbox-2"></span> 91 </label> 92 </div> 93 </div> 94 95 <p id="reportSent" data-l10n-id="crashed-report-sent"></p> 96 97 <div class="button-container"> 98 <button id="closeTab" data-l10n-id="crashed-close-tab-button"></button> 99 <button 100 id="restoreTab" 101 class="primary" 102 data-l10n-id="crashed-restore-tab-button" 103 ></button> 104 <button 105 id="restoreAll" 106 autofocus="true" 107 data-l10n-id="crashed-restore-all-button" 108 /> 109 </div> 110 </div> 111 </body> 112 <script src="chrome://browser/content/aboutTabCrashed.js" /> 113 </html>