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