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

Side by Side Diff: chrome/browser/resources/net_internals/import_view.html

Issue 21944004: Enable the accessibility audit for chrome://net-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 4 months 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
OLDNEW
1 <style> 1 <style>
2 #import-view-command-line, 2 #import-view-command-line,
3 #import-view-user-comments { 3 #import-view-user-comments {
4 /* Wrap long lines inside of PREs */ 4 /* Wrap long lines inside of PREs */
5 white-space: pre-wrap; 5 white-space: pre-wrap;
6 } 6 }
7 7
8 #import-view-load-status-text { 8 #import-view-load-status-text {
9 /* Wrap long lines inside of PREs */ 9 /* Wrap long lines inside of PREs */
10 white-space: pre-wrap; 10 white-space: pre-wrap;
11 } 11 }
12 12
13 .import-view-pending-log { 13 .import-view-pending-log {
14 color: blue; 14 color: blue;
15 font-weight: bold; 15 font-weight: bold;
16 } 16 }
17 17
18 .import-view-success-log { 18 .import-view-success-log {
19 color: green; 19 color: green;
20 font-weight: bold; 20 font-weight: bold;
21 } 21 }
22 22
23 .import-view-error-log { 23 .import-view-error-log {
24 color: red; 24 color: #e00;
25 padding: 5px; 25 padding: 5px;
26 border: 1px solid red; 26 border: 1px solid #e00;
27 } 27 }
28 28
29 .import-view-warning-log { 29 .import-view-warning-log {
30 color: red; 30 color: #e00;
31 } 31 }
32 32
33 </style> 33 </style>
34 34
35 <div id=import-view-tab-content class=content-box> 35 <div id=import-view-tab-content class=content-box>
36 <div> 36 <div>
37 <div style='margin-bottom:20px'><b>TIP</b>: Drag-and-drop files into this wi ndow.</div> 37 <div style='margin-bottom:20px'><b>TIP</b>: Drag-and-drop files into this wi ndow.</div>
38 <input type=file value="Load log from file" id=import-view-load-log-file></i nput> 38 <input type=file value="Load log from file" id=import-view-load-log-file></i nput>
39 <pre id=import-view-load-status-text></pre> 39 <pre id=import-view-load-status-text></pre>
40 </div> 40 </div>
(...skipping 25 matching lines...) Expand all
66 <tr> 66 <tr>
67 <th>User comments</th> 67 <th>User comments</th>
68 <td> 68 <td>
69 <pre id=import-view-user-comments jscontent="userComments" 69 <pre id=import-view-user-comments jscontent="userComments"
70 jsdisplay="typeof userComments != 'undefined'"></pre> 70 jsdisplay="typeof userComments != 'undefined'"></pre>
71 </td> 71 </td>
72 </tr> 72 </tr>
73 </table> 73 </table>
74 </div> 74 </div>
75 </div> 75 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/net_internals/hsts_view.js ('k') | chrome/browser/resources/net_internals/main.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698