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"> |
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
43 <button id="clear-all">Clear all</button> | 43 <button id="clear-all">Clear all</button> |
44 <button id="clear-selected">Clear selected</button> | 44 <button id="clear-selected">Clear selected</button> |
45 </div> | 45 </div> |
46 <table class="stored-pages-table"> | 46 <table class="stored-pages-table"> |
47 <thead> | 47 <thead> |
48 <tr> | 48 <tr> |
49 <th> </th> | 49 <th> </th> |
50 <th>URL</th> | 50 <th>URL</th> |
51 <th>Namespace</th> | 51 <th>Namespace</th> |
52 <th>Size (Kb)</th> | 52 <th>Size (Kb)</th> |
| 53 <th>Expired</th> |
53 </tr> | 54 </tr> |
54 </thead> | 55 </thead> |
55 <tbody id="stored-pages"> </tbody> | 56 <tbody id="stored-pages"> </tbody> |
56 </table> | 57 </table> |
57 <div id="page-actions-info"></div> | 58 <div id="page-actions-info"></div> |
58 | 59 |
59 <h2>Request Queue</h2> | 60 <h2>Request Queue</h2> |
60 <table class="request-queue-table"> | 61 <table class="request-queue-table"> |
61 <thead> | 62 <thead> |
62 <tr> | 63 <tr> |
63 <th>URL</th> | 64 <th>URL</th> |
64 <th>Created Timestamp</th> | 65 <th>Created Timestamp</th> |
65 <th>Status</th> | 66 <th>Status</th> |
66 </tr> | 67 </tr> |
67 </thead> | 68 </thead> |
68 <tbody id="request-queue"> </tbody> | 69 <tbody id="request-queue"> </tbody> |
69 </table> | 70 </table> |
70 </body> | 71 </body> |
71 </html> | 72 </html> |
OLD | NEW |