Chromium Code Reviews| 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/load_time_data.js"></script> | 10 <script src="chrome://resources/js/load_time_data.js"></script> |
| (...skipping 30 matching lines...) Expand all Loading... | |
| 41 <div class="feedback-fieldlabel checkbox"> | 41 <div class="feedback-fieldlabel checkbox"> |
| 42 <label> | 42 <label> |
| 43 <input id="sys-info-checkbox" type="checkbox" checked> | 43 <input id="sys-info-checkbox" type="checkbox" checked> |
| 44 <span id="sysinfo-label"> | 44 <span id="sysinfo-label"> |
| 45 <a id="sysinfo-url" href="#" i18n-content="sysinfo"></a> | 45 <a id="sysinfo-url" href="#" i18n-content="sysinfo"></a> |
| 46 </span> | 46 </span> |
| 47 </label> | 47 </label> |
| 48 </div> | 48 </div> |
| 49 </if> | 49 </if> |
| 50 <!-- Screenshot --> | 50 <!-- Screenshot --> |
| 51 <div id="screenshot-row"> | 51 <div id="screenshot-row" hidden> |
| 52 <div class="feedback-fieldlabel checkbox"> | 52 <div class="feedback-fieldlabel checkbox"> |
| 53 <label> | 53 <label> |
| 54 <input id="screenshot-checkbox" type="checkbox"> | 54 <input id="screenshot-checkbox" type="checkbox"> |
| 55 <span id="screenshot-label-current" | 55 <span id="screenshot-label-current" |
| 56 i18n-content="current-screenshot"></span> | 56 i18n-content="current-screenshot"></span> |
| 57 <if expr="pp_ifdef('chromeos')"> | 57 <if expr="pp_ifdef('chromeos')"> |
| 58 <span id="screenshot-label-saved" | 58 <span id="screenshot-label-saved" |
| 59 i18n-content="saved-screenshot" hidden></span> | 59 i18n-content="saved-screenshot" hidden></span> |
| 60 </label> | 60 </label> |
| 61 <a id="screenshot-link-tosaved" href="#" | 61 <a id="screenshot-link-tosaved" href="#" |
| 62 i18n-content="choose-different-screenshot"> | 62 i18n-content="choose-different-screenshot"> |
| 63 </a> | 63 </a> |
| 64 <a id="screenshot-link-tocurrent" href="#" | 64 <a id="screenshot-link-tocurrent" href="#" |
| 65 i18n-content="choose-original-screenshot" hidden> | 65 i18n-content="choose-original-screenshot" hidden> |
| 66 </a> | 66 </a> |
| 67 </if> | 67 </if> |
| 68 </div> | 68 </div> |
| 69 <if expr="pp_ifdef('chromeos')"> | 69 <if expr="pp_ifdef('chromeos')"> |
| 70 <div id="saved-screenshots" class="thumbnail-list" hidden></div> | 70 <div id="saved-screenshots" class="thumbnail-list" hidden></div> |
|
Mattias Nissler (ping if slow)
2012/07/13 15:23:42
hide?
qfel
2012/07/16 09:11:12
It should stay hidden even if you display screensh
| |
| 71 </if> | 71 </if> |
| 72 <div id="current-screenshots" class="thumbnail-list"></div> | 72 <div id="current-screenshots" class="thumbnail-list"></div> |
|
Mattias Nissler (ping if slow)
2012/07/13 15:23:42
hide?
qfel
2012/07/16 09:11:12
That's inside screenshot-row, which is initially h
| |
| 73 </div> | 73 </div> |
| 74 <div id="privacy-note" i18n-values=".innerHTML:privacy-note"></div> | 74 <div id="privacy-note" i18n-values=".innerHTML:privacy-note"></div> |
| 75 <div id="buttons-pane"> | 75 <div id="buttons-pane"> |
| 76 <!-- Buttons --> | 76 <!-- Buttons --> |
| 77 <input id="send-report-button" type="submit" | 77 <input id="send-report-button" type="submit" |
| 78 class="feedback-button" i18n-values="value:send-report"> | 78 class="feedback-button" i18n-values="value:send-report"> |
| 79 <input id="cancel-button" type="submit" | 79 <input id="cancel-button" type="submit" |
| 80 class="feedback-button" i18n-values="value:cancel"> | 80 class="feedback-button" i18n-values="value:cancel"> |
| 81 </div> | 81 </div> |
| 82 </div> | 82 </div> |
| 83 <script src="chrome://resources/js/i18n_template2.js"></script> | 83 <script src="chrome://resources/js/i18n_template2.js"></script> |
| 84 </body> | 84 </body> |
| 85 </html> | 85 </html> |
| OLD | NEW |