| OLD | NEW |
| (Empty) | |
| 1 <!doctype html> |
| 2 <html lang="en" dir="ltr"> |
| 3 <head> |
| 4 <meta charset="utf-8"> |
| 5 <title>Offline Internals</title> |
| 6 <meta name="viewport" content="width=device-width"> |
| 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 8 <link rel="stylesheet" href="offline_internals.css"> |
| 9 |
| 10 <link rel="import" href="chrome://resources/html/cr.html"> |
| 11 <script src="chrome://resources/js/load_time_data.js"></script> |
| 12 <script src="chrome://resources/js/util.js"></script> |
| 13 <script src="strings.js"></script> |
| 14 <script src="offline_internals.js"></script> |
| 15 </head> |
| 16 <body> |
| 17 <h1>Offline Internals</h1> |
| 18 <div> |
| 19 <div id="current-status"></div> |
| 20 <button id="refresh">Refresh page</button> |
| 21 </div> |
| 22 |
| 23 <h2>Stored Pages</h2> |
| 24 <div> |
| 25 <button id="clear-all">Clear all</button> |
| 26 <button id="clear-selected">Clear selected</button> |
| 27 </div> |
| 28 <table class="stored-pages-table"> |
| 29 <thead> |
| 30 <tr> |
| 31 <th> </th> |
| 32 <th>URL</th> |
| 33 <th>Namespace</th> |
| 34 <th>Size</th> |
| 35 </tr> |
| 36 </thead> |
| 37 <tbody id="stored-pages"> </tbody> |
| 38 </table> |
| 39 |
| 40 <h2>Request Queue</h2> |
| 41 <table class="request-queue-table"> |
| 42 <thead> |
| 43 <tr> |
| 44 <th>URL</th> |
| 45 <th>Created Timestamp</th> |
| 46 <th>Status</th> |
| 47 </tr> |
| 48 </thead> |
| 49 <tbody id="request-queue"> </tbody> |
| 50 </table> |
| 51 </body> |
| 52 </html> |
| OLD | NEW |