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

Side by Side Diff: chrome/browser/resources/offline_pages/offline_internals.html

Issue 2038963002: [Offline Pages] Link the internals page with the offline model and request (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html lang="en" dir="ltr"> 2 <html lang="en" dir="ltr">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Offline Internals</title> 5 <title>Offline Internals</title>
6 <meta name="viewport" content="width=device-width"> 6 <meta name="viewport" content="width=device-width">
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
8 <link rel="stylesheet" href="offline_internals.css"> 8 <link rel="stylesheet" href="offline_internals.css">
9 9
10 <link rel="import" href="chrome://resources/html/cr.html"> 10 <link rel="import" href="chrome://resources/html/cr.html">
11 <script src="chrome://resources/js/load_time_data.js"></script> 11 <script src="chrome://resources/js/load_time_data.js"></script>
12 <script src="chrome://resources/js/util.js"></script> 12 <script src="chrome://resources/js/util.js"></script>
13 <script src="strings.js"></script> 13 <script src="strings.js"></script>
14 <script src="offline_internals.js"></script> 14 <script src="offline_internals.js"></script>
15 </head> 15 </head>
16 <body> 16 <body>
17 <h1>Offline Internals</h1> 17 <h1>Offline Internals</h1>
18 <div> 18 <div>
19 <div id="current-status"></div> 19 <div id="current-status"></div>
20 <button id="refresh">Refresh page</button> 20 <button id="refresh">Refresh page</button>
21 <button id="download">Dump</button>
21 </div> 22 </div>
22 23
23 <h2>Stored Pages</h2> 24 <h2>Stored Pages</h2>
24 <div> 25 <div>
25 <button id="clear-all">Clear all</button> 26 <button id="clear-all">Clear all</button>
26 <button id="clear-selected">Clear selected</button> 27 <button id="clear-selected">Clear selected</button>
27 </div> 28 </div>
28 <table class="stored-pages-table"> 29 <table class="stored-pages-table">
29 <thead> 30 <thead>
30 <tr> 31 <tr>
31 <th>&nbsp;</th> 32 <th>&nbsp;</th>
32 <th>URL</th> 33 <th>URL</th>
33 <th>Namespace</th> 34 <th>Namespace</th>
34 <th>Size</th> 35 <th>Size (Kb)</th>
35 </tr> 36 </tr>
36 </thead> 37 </thead>
37 <tbody id="stored-pages"> </tbody> 38 <tbody id="stored-pages"> </tbody>
38 </table> 39 </table>
40 <div id="page-actions-info"></div>
39 41
40 <h2>Request Queue</h2> 42 <h2>Request Queue</h2>
41 <table class="request-queue-table"> 43 <table class="request-queue-table">
42 <thead> 44 <thead>
43 <tr> 45 <tr>
44 <th>URL</th> 46 <th>URL</th>
45 <th>Created Timestamp</th> 47 <th>Created Timestamp</th>
46 <th>Status</th> 48 <th>Status</th>
47 </tr> 49 </tr>
48 </thead> 50 </thead>
49 <tbody id="request-queue"> </tbody> 51 <tbody id="request-queue"> </tbody>
50 </table> 52 </table>
51 </body> 53 </body>
52 </html> 54 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698