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

Side by Side Diff: netlog_viewer/prerender_view.html

Issue 2178423002: Bring the gh-pages branch up to date with the master branch (Closed) Base URL: https://github.com/catapult-project/catapult.git@gh-pages
Patch Set: Created 4 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
« no previous file with comments | « netlog_viewer/modules_view.js ('k') | netlog_viewer/prerender_view.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <style>
2
3 #prerender-view-history-table tr.used {
4 background-color: #F0FFF0;
5 }
6
7 #prerender-view-history-table tr:not(.used) {
8 background-color: #FFF0F0;
9 }
10
11 </style>
12
13 <div id=prerender-view-tab-content class=content-box>
14 <ul style='margin-top:0'>
15 <li>Prerender Enabled:
16 <span id=prerender-view-enabled></span>
17 <span id=prerender-view-enabled-note></span></li>
18 <li>Prerender Omnibox Enabled:
19 <span id=prerender-view-omnibox-enabled></span></li>
20 </ul>
21 <h4>Active Prerender Pages</h4>
22 <table class="styled-table">
23 <thead>
24 <tr>
25 <th>URL</th>
26 <th>Duration</th>
27 <th>Loaded</th>
28 </tr>
29 </thead>
30 <tbody id=prerender-view-active-table>
31 </tbody>
32 </table>
33 <h4>Prerender History</h4>
34 <table class="styled-table">
35 <thead>
36 <tr>
37 <th>Origin</th>
38 <th>URL</th>
39 <th>Final Status</th>
40 <th>Time</th>
41 </tr>
42 </thead>
43 <tbody id=prerender-view-history-table>
44 </tbody>
45 </table>
46 </div>
OLDNEW
« no previous file with comments | « netlog_viewer/modules_view.js ('k') | netlog_viewer/prerender_view.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698