LEFT | RIGHT |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <meta charset="utf-8"> | 3 <meta charset="utf-8"> |
4 <script src="polyfill.js"></script> | 4 <script src="polyfill.js"></script> |
5 <script src="issue-reporter.js"></script> | 5 <script src="issue-reporter.js"></script> |
6 <script src="i18n.js"></script> | 6 <script src="i18n.js"></script> |
7 <link rel="stylesheet" type="text/css" href="skin/issue-reporter.css"> | 7 <link rel="stylesheet" type="text/css" href="skin/issue-reporter.css"> |
8 <title class="i18n_issueReporter_page_title"></title> | 8 <title class="i18n_issueReporter_page_title"></title> |
9 </head> | 9 </head> |
10 <body> | 10 <body> |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
59 | 59 |
60 <label for="comment" class="i18n_issueReporter_comment_label"></label> | 60 <label for="comment" class="i18n_issueReporter_comment_label"></label> |
61 <textarea id="comment"></textarea> | 61 <textarea id="comment"></textarea> |
62 <p id="commentLengthWarning" data-invisible="true" class="i18n_issueRepo
rter_comment_lengthWarning"></p> | 62 <p id="commentLengthWarning" data-invisible="true" class="i18n_issueRepo
rter_comment_lengthWarning"></p> |
63 <a href="#" id="showData" class="i18n_issueReporter_showData_label"></a> | 63 <a href="#" id="showData" class="i18n_issueReporter_showData_label"></a> |
64 </div> | 64 </div> |
65 | 65 |
66 <div class="page" id="sendPage" hidden> | 66 <div class="page" id="sendPage" hidden> |
67 <h1 class="i18n_issueReporter_sendPage_heading"></h1> | 67 <h1 class="i18n_issueReporter_sendPage_heading"></h1> |
68 | 68 |
69 <p class="i18n_issueReporter_sending"></p> | 69 <p id="sendReportMessage" class="i18n_issueReporter_sending"></p> |
70 | 70 |
71 <div id="sendingProgressContainer"> | 71 <div id="sendingProgressContainer"> |
72 <progress id="sendingProgress"></progress> | 72 <progress id="sendingProgress"></progress> |
73 </div> | 73 </div> |
74 | 74 |
75 <iframe id="result" sandbox="" hidden></iframe> | 75 <p id="error" hidden></p> |
| 76 |
| 77 <iframe id="result" sandbox="allow-top-navigation-by-user-activation" hi
dden></iframe> |
76 </div> | 78 </div> |
77 </main> | 79 </main> |
78 | 80 |
79 <footer> | 81 <footer> |
80 <a id="privacyPolicy" target="_blank" class="i18n_issueReporter_privacyPol
icy"></a> | 82 <a id="privacyPolicy" target="_blank" class="i18n_issueReporter_privacyPol
icy"></a> |
81 <button id="cancel" class="i18n_cancel secondary"></button> | 83 <button id="cancel" class="i18n_cancel secondary"></button> |
82 <button id="continue" class="i18n_continue primary" disabled></button> | 84 <button id="continue" class="i18n_continue primary" disabled></button> |
83 </footer> | 85 </footer> |
84 </body> | 86 </body> |
85 </html> | 87 </html> |
LEFT | RIGHT |