Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(34)

Side by Side Diff: chrome/browser/resources/bug_report.html

Issue 8571024: convert options and bug reporter to chromey checkboxes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/options/advanced_options.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 <!-- We want to keep our style in sync with the options page. --> 6 <!-- We want to keep our style in sync with the options page. -->
7 <link rel="stylesheet" href="chrome://resources/css/button.css"> 7 <link rel="stylesheet" href="chrome://resources/css/button.css">
8 <link rel="stylesheet" href="chrome://resources/css/checkbox.css">
8 <link rel="stylesheet" href="chrome://resources/css/select.css"> 9 <link rel="stylesheet" href="chrome://resources/css/select.css">
9 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 10 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
10 <link rel="stylesheet" href="bug_report.css"> 11 <link rel="stylesheet" href="bug_report.css">
11 12
12 <script src="chrome://resources/js/local_strings.js"></script> 13 <script src="chrome://resources/js/local_strings.js"></script>
13 <script src="chrome://resources/js/util.js"></script> 14 <script src="chrome://resources/js/util.js"></script>
14 <script src="chrome://bugreport/bug_report.js"></script> 15 <script src="chrome://bugreport/bug_report.js"></script>
15 <script src="chrome://bugreport/strings.js"></script> 16 <script src="chrome://bugreport/strings.js"></script>
16 </head> 17 </head>
17 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 18 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 </tr> 55 </tr>
55 <tr> 56 <tr>
56 <td> 57 <td>
57 <table style="-webkit-border-vertical-spacing: 0px;"> 58 <table style="-webkit-border-vertical-spacing: 0px;">
58 <!-- Page URL --> 59 <!-- Page URL -->
59 <tr> 60 <tr>
60 <td> 61 <td>
61 <table class="bug-report-table"> 62 <table class="bug-report-table">
62 <tr> 63 <tr>
63 <td class="bug-report-fieldlabel"> 64 <td class="bug-report-fieldlabel">
64 <input id="page-url-checkbox" type="checkbox" 65 <label>
65 value="pageurl" checked> 66 <input id="page-url-checkbox" type="checkbox"
66 <span id="page-url-label" i18n-content="page-url"> 67 value="pageurl" checked>
67 </span> 68 <span id="page-url-label"
69 i18n-content="page-url"></span>
70 </label>
68 </td> 71 </td>
69 <td> 72 <td>
70 <input id="page-url-text" class="bug-report-field" 73 <input id="page-url-text" class="bug-report-field"
71 maxlength="200"> 74 maxlength="200">
72 </td> 75 </td>
73 </tr> 76 </tr>
74 </table> 77 </table>
75 </td> 78 </td>
76 </tr> 79 </tr>
77 <if expr="pp_ifdef('chromeos')"> 80 <if expr="pp_ifdef('chromeos')">
78 <!-- User e-mail --> 81 <!-- User e-mail -->
79 <tr> 82 <tr>
80 <td> 83 <td>
81 <table id="user-email-table" class="bug-report-table"> 84 <table id="user-email-table" class="bug-report-table">
82 <tr> 85 <tr>
83 <td class="bug-report-fieldlabel"> 86 <td class="bug-report-fieldlabel">
84 <input id="user-email-checkbox" type="checkbox" 87 <label>
85 checked> 88 <input id="user-email-checkbox" type="checkbox"
86 <span id="user-email-label" 89 checked>
87 i18n-content="user-email"></span> 90 <span id="user-email-label"
91 i18n-content="user-email"></span>
92 </label>
88 </td> 93 </td>
89 <td> 94 <td>
90 <label id="user-email-text" 95 <label id="user-email-text"
91 class="bug-report-field"></label> 96 class="bug-report-field"></label>
92 </td> 97 </td>
93 </tr> 98 </tr>
94 </table> 99 </table>
95 </td> 100 </td>
96 </tr> 101 </tr>
97 <!-- System Information --> 102 <!-- System Information -->
98 <tr> 103 <tr>
99 <td> 104 <td>
100 <table class="bug-report-table"> 105 <table class="bug-report-table">
101 <tr> 106 <tr>
102 <td class="bug-report-fieldlabel"> 107 <td class="bug-report-fieldlabel">
103 <input id="sys-info-checkbox" type="checkbox" 108 <label>
104 checked> 109 <input id="sys-info-checkbox" type="checkbox"
105 <span id="sysinfo-label"> 110 checked>
106 <a id="sysinfo-url" href="#" 111 <span id="sysinfo-label">
107 i18n-content="sysinfo"></a> 112 <a id="sysinfo-url" href="#"
108 </span> 113 i18n-content="sysinfo"></a>
114 </span>
115 </label>
109 </td> 116 </td>
110 </tr> 117 </tr>
111 </table> 118 </table>
112 </td> 119 </td>
113 </tr> 120 </tr>
114 </if> 121 </if>
115 <!-- Screenshot --> 122 <!-- Screenshot -->
116 <tr> 123 <tr>
117 <td> 124 <td>
118 <table class="bug-report-table"> 125 <table class="bug-report-table">
119 <tr> 126 <tr>
120 <td class="bug-report-fieldlabel"> 127 <td class="bug-report-fieldlabel">
121 <input id="screenshot-checkbox" type="checkbox"> 128 <label>
122 <span id="screenshot-label-current" 129 <input id="screenshot-checkbox" type="checkbox">
123 i18n-content="current-screenshot"> 130 <span id="screenshot-label-current"
124 </span> 131 i18n-content="current-screenshot"></span>
132 </label>
125 <if expr="pp_ifdef('chromeos')"> 133 <if expr="pp_ifdef('chromeos')">
126 <span id="screenshot-label-saved" 134 <span id="screenshot-label-saved"
127 style="display: none;" 135 style="display: none;"
128 i18n-content="saved-screenshot"> 136 i18n-content="saved-screenshot">
129 </span> 137 </span>
130 <a id="screenshot-link-tosaved" href="#" 138 <a id="screenshot-link-tosaved" href="#"
131 i18n-content="choose-different-screenshot"> 139 i18n-content="choose-different-screenshot">
132 </a> 140 </a>
133 <a id="screenshot-link-tocurrent" href="#" 141 <a id="screenshot-link-tocurrent" href="#"
134 style="display: none;" 142 style="display: none;"
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 </table> 179 </table>
172 </div> 180 </div>
173 </div> 181 </div>
174 </div> 182 </div>
175 </div> 183 </div>
176 </div> 184 </div>
177 <script src="chrome://resources/js/i18n_template.js"></script> 185 <script src="chrome://resources/js/i18n_template.js"></script>
178 <script src="chrome://resources/js/i18n_process.js"></script> 186 <script src="chrome://resources/js/i18n_process.js"></script>
179 </body> 187 </body>
180 </html> 188 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/options/advanced_options.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698