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

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

Issue 2691053002: Network Log import UI should default to .json files (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
(...skipping 17 matching lines...) Expand all
28 28
29 .import-view-warning-log { 29 .import-view-warning-log {
30 color: #e00; 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 acc ept=".json"></input>
39 <pre id=import-view-load-status-text></pre> 39 <pre id=import-view-load-status-text></pre>
40 </div> 40 </div>
41 41
42 <div id=import-view-loaded-div style="display: none"> 42 <div id=import-view-loaded-div style="display: none">
43 <h2>Data Loaded</h2> 43 <h2>Data Loaded</h2>
44 <table class=styled-table> 44 <table class=styled-table>
45 <tr> 45 <tr>
46 <th>Export date</th> 46 <th>Export date</th>
47 <td jscontent="timeutil.dateToString(new Date(constants.clientInfo.numeric Date))"></td> 47 <td jscontent="timeutil.dateToString(new Date(constants.clientInfo.numeric Date))"></td>
48 </tr> 48 </tr>
(...skipping 23 matching lines...) Expand all
72 <tr> 72 <tr>
73 <th>User comments</th> 73 <th>User comments</th>
74 <td> 74 <td>
75 <pre id=import-view-user-comments jscontent="userComments" 75 <pre id=import-view-user-comments jscontent="userComments"
76 jsdisplay="typeof userComments != 'undefined'"></pre> 76 jsdisplay="typeof userComments != 'undefined'"></pre>
77 </td> 77 </td>
78 </tr> 78 </tr>
79 </table> 79 </table>
80 </div> 80 </div>
81 </div> 81 </div>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698