OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html i18n-values="dir:textdirection;"> | 2 <html i18n-values="dir:textdirection;"> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <title i18n-content="page-title"></title> | 5 <title i18n-content="page-title"></title> |
6 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> | 6 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> |
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> | 7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> |
8 <link rel="stylesheet" href="feedback.css"> | 8 <link rel="stylesheet" href="feedback.css"> |
9 | 9 |
10 <script src="chrome://resources/js/cr.js"></script> | 10 <script src="chrome://resources/js/cr.js"></script> |
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 | 66 |
67 <!-- System Information --> | 67 <!-- System Information --> |
68 <div class="checkbox"> | 68 <div class="checkbox"> |
69 <label> | 69 <label> |
70 <input id="sys-info-checkbox" type="checkbox" checked> | 70 <input id="sys-info-checkbox" type="checkbox" checked> |
71 <span id="sysinfo-label"> | 71 <span id="sysinfo-label"> |
72 <a id="sysinfo-url" href="#" i18n-content="sysinfo"></a> | 72 <a id="sysinfo-url" href="#" i18n-content="sysinfo"></a> |
73 </span> | 73 </span> |
74 </label> | 74 </label> |
75 </div> | 75 </div> |
| 76 |
| 77 <!-- Performance Feedback --> |
| 78 <div class="checkbox" id="performance-info-area" hidden> |
| 79 <label> |
| 80 <input id="performance-info-checkbox" type="checkbox"> |
| 81 <span id="performance-info-label" i18n-content="performance-trace"> |
| 82 </span> |
| 83 </label> |
| 84 </div> |
76 </if> | 85 </if> |
77 <!-- Screenshot --> | 86 <!-- Screenshot --> |
78 <div id="screenshot-row" hidden> | 87 <div id="screenshot-row" hidden> |
79 <div class="checkbox"> | 88 <div class="checkbox"> |
80 <label> | 89 <label> |
81 <input id="screenshot-checkbox" type="checkbox"> | 90 <input id="screenshot-checkbox" type="checkbox"> |
82 <span id="screenshot-label-current" | 91 <span id="screenshot-label-current" |
83 i18n-content="current-screenshot"></span> | 92 i18n-content="current-screenshot"></span> |
84 <if expr="pp_ifdef('chromeos')"> | 93 <if expr="pp_ifdef('chromeos')"> |
85 <span id="screenshot-label-saved" | 94 <span id="screenshot-label-saved" |
(...skipping 17 matching lines...) Expand all Loading... |
103 <div id="buttons-pane"> | 112 <div id="buttons-pane"> |
104 <input id="send-report-button" type="submit" | 113 <input id="send-report-button" type="submit" |
105 class="feedback-button" i18n-values="value:send-report"> | 114 class="feedback-button" i18n-values="value:send-report"> |
106 <input id="cancel-button" type="submit" | 115 <input id="cancel-button" type="submit" |
107 class="feedback-button" i18n-values="value:cancel"> | 116 class="feedback-button" i18n-values="value:cancel"> |
108 </div> | 117 </div> |
109 </div> | 118 </div> |
110 <script src="chrome://resources/js/i18n_template2.js"></script> | 119 <script src="chrome://resources/js/i18n_template2.js"></script> |
111 </body> | 120 </body> |
112 </html> | 121 </html> |
OLD | NEW |