OLD | NEW |
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> </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"> </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> |
OLD | NEW |