OLD | NEW |
---|---|
1 <!doctype html> | 1 <!doctype html> |
2 <html> | 2 <html> |
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> </th> | 32 <th> </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"> | 38 <tbody id="stored-pages"> |
38 </tbody> | 39 </tbody> |
39 </table> | 40 </table> |
41 <div id="random-info"></div> | |
dewittj
2016/06/03 23:12:05
Is it really random? :)
chili
2016/06/09 22:29:16
Done.
| |
40 | 42 |
41 <h2>Request Queue</h2> | 43 <h2>Request Queue</h2> |
42 <table class="request-queue-table"> | 44 <table class="request-queue-table"> |
43 <thead> | 45 <thead> |
44 <tr> | 46 <tr> |
45 <th>URL</th> | 47 <th>URL</th> |
46 <th>Created Timestamp</th> | 48 <th>Created Timestamp</th> |
47 <th>Status</th> | 49 <th>Status</th> |
48 </tr> | 50 </tr> |
49 </thead> | 51 </thead> |
50 <tbody id="request-queue"> | 52 <tbody id="request-queue"> |
51 </tbody> | 53 </tbody> |
52 </table> | 54 </table> |
53 </body> | 55 </body> |
54 </html> | 56 </html> |
OLD | NEW |