Chromium Code Reviews| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 51 <th>Namespace</th> | 51 <th>Namespace</th> |
| 52 <th>Size (Kb)</th> | 52 <th>Size (Kb)</th> |
| 53 <th>Expired</th> | 53 <th>Expired</th> |
| 54 </tr> | 54 </tr> |
| 55 </thead> | 55 </thead> |
| 56 <tbody id="stored-pages"> </tbody> | 56 <tbody id="stored-pages"> </tbody> |
| 57 </table> | 57 </table> |
| 58 <div id="page-actions-info"></div> | 58 <div id="page-actions-info"></div> |
| 59 | 59 |
| 60 <h2>Request Queue</h2> | 60 <h2>Request Queue</h2> |
| 61 <div> | |
| 62 <button id="delete-all">Delete all</button> | |
|
chili
2016/09/12 20:26:01
nit: can we id this to delete-all-requests and del
Pete Williamson
2016/09/12 22:46:35
Done.
| |
| 63 <button id="delete-selected">Delete selected</button> | |
| 64 </div> | |
| 61 <table class="request-queue-table"> | 65 <table class="request-queue-table"> |
| 62 <thead> | 66 <thead> |
| 63 <tr> | 67 <tr> |
| 68 <th> </th> | |
| 64 <th>URL</th> | 69 <th>URL</th> |
| 65 <th>Created Timestamp</th> | 70 <th>Created Timestamp</th> |
| 66 <th>Status</th> | 71 <th>Status</th> |
| 67 </tr> | 72 </tr> |
| 68 </thead> | 73 </thead> |
| 69 <tbody id="request-queue"> </tbody> | 74 <tbody id="request-queue"> </tbody> |
| 70 </table> | 75 </table> |
| 71 <input id="url" type="url" | 76 <input id="url" type="url" |
| 72 placeholder="http://www.url1.com, http://www.url2.com, ..."> | 77 placeholder="http://www.url1.com, http://www.url2.com, ..."> |
| 73 <button id="add-to-queue">Load in background</button> | 78 <button id="add-to-queue">Load in background</button> |
| 74 <div id="save-url-state"></div> | 79 <div id="save-url-state"></div> |
| 75 </body> | 80 </body> |
| 76 </html> | 81 </html> |
| OLD | NEW |