| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection;lang:language"> | 2 <html i18n-values="dir:textdirection;lang:language"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 5 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 6 <link rel="stylesheet" href="chrome://resources/css/apps/common.css"></link> | 6 <link rel="stylesheet" href="chrome://resources/css/apps/common.css"></link> |
| 7 <link rel="stylesheet" href="chrome://resources/css/apps/topbutton_bar.css"></li
nk> | 7 <link rel="stylesheet" href="chrome://resources/css/apps/topbutton_bar.css"></li
nk> |
| 8 <link rel="stylesheet" href="../css/feedback.css"> | 8 <link rel="stylesheet" href="../css/feedback.css"> |
| 9 | 9 |
| 10 <script src="chrome://resources/js/load_time_data.js"></script> | 10 <script src="chrome://resources/js/load_time_data.js"></script> |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 <div id="content-pane" class="content"> | 42 <div id="content-pane" class="content"> |
| 43 <textarea id="description-text" aria-labelledby="title-bar"></textarea> | 43 <textarea id="description-text" aria-labelledby="title-bar"></textarea> |
| 44 <div> | 44 <div> |
| 45 <p id="additional-info-label" i18n-content="additionalInfo"><p> | 45 <p id="additional-info-label" i18n-content="additionalInfo"><p> |
| 46 </div> | 46 </div> |
| 47 <div id="page-url" class="text-field-container"> | 47 <div id="page-url" class="text-field-container"> |
| 48 <label id="page-url-label" i18n-content="page-url"></label> | 48 <label id="page-url-label" i18n-content="page-url"></label> |
| 49 <input id="page-url-text" aria-labelledby="page-url-label" type="text"> | 49 <input id="page-url-text" aria-labelledby="page-url-label" type="text"> |
| 50 </div> | 50 </div> |
| 51 <!-- User e-mail --> | 51 <!-- User e-mail --> |
| 52 <div id="user-email" class="text-field-container"> | 52 <div id="user-email" class="text-field-container" hidden> |
| 53 <label id="user-email-label" i18n-content="user-email"></label> | 53 <label id="user-email-label" i18n-content="user-email"></label> |
| 54 <select id="user-email-drop-down" aria-labelledby="user-email-label"> | 54 <select id="user-email-drop-down" aria-labelledby="user-email-label"> |
| 55 <option id="anonymous-user-option" value="anonymous_user" | 55 <option id="anonymous-user-option" value="anonymous_user" |
| 56 i18n-content="anonymous-user"></option> | 56 i18n-content="anonymous-user"></option> |
| 57 </select> | 57 </select> |
| 58 </div> | 58 </div> |
| 59 <!-- Attach a file --> | 59 <!-- Attach a file --> |
| 60 <div id="attach-file-container" class="text-field-container"> | 60 <div id="attach-file-container" class="text-field-container"> |
| 61 <label id="attach-file-label" i18n-content="attach-file-label"></label> | 61 <label id="attach-file-label" i18n-content="attach-file-label"></label> |
| 62 <input id="attach-file" type="file" aria-labelledby="attach-file-label"> | 62 <input id="attach-file" type="file" aria-labelledby="attach-file-label"> |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 95 <button id="cancel-button" type="submit" | 95 <button id="cancel-button" type="submit" |
| 96 class="white-button" i18n-content="cancel"> | 96 class="white-button" i18n-content="cancel"> |
| 97 </button> | 97 </button> |
| 98 <button id="send-report-button" type="submit" | 98 <button id="send-report-button" type="submit" |
| 99 class="blue-button" i18n-content="send-report"> | 99 class="blue-button" i18n-content="send-report"> |
| 100 </button> | 100 </button> |
| 101 </div> | 101 </div> |
| 102 </div> | 102 </div> |
| 103 </body> | 103 </body> |
| 104 </html> | 104 </html> |
| OLD | NEW |