Chromium Code Reviews| Index: chrome/browser/resources/offline_pages/offline_internals.html |
| diff --git a/chrome/browser/resources/offline_pages/offline_internals.html b/chrome/browser/resources/offline_pages/offline_internals.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..a5e5b544ce264308cb009358fcfc710d2803e51d |
| --- /dev/null |
| +++ b/chrome/browser/resources/offline_pages/offline_internals.html |
| @@ -0,0 +1,54 @@ |
| +<!doctype html> |
| +<html> |
|
Dan Beam
2016/06/06 23:36:12
arguable nit: lang="en" dir="ltr" hardcoded in the
chili
2016/06/06 23:51:00
Done.
|
| + <head> |
| + <meta charset="utf-8"> |
| + <title>Offline Internals</title> |
| + <meta name="viewport" content="width=device-width"> |
| + <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| + <link rel="stylesheet" href="offline_internals.css"> |
| + |
| + <link rel="import" href="chrome://resources/html/cr.html"> |
| + <script src="chrome://resources/js/load_time_data.js"></script> |
| + <script src="chrome://resources/js/util.js"></script> |
| + <script src="strings.js"></script> |
| + <script src="offline_internals.js"></script> |
| + </head> |
| + <body> |
| + <h1>Offline Internals</h1> |
| + <div> |
| + <div id="current-status"></div> |
| + <button id="refresh">Refresh page</button> |
| + </div> |
| + |
| + <h2>Stored Pages</h2> |
| + <div> |
| + <button id="clear-all">Clear all</button> |
| + <button id="clear-selected">Clear selected</button> |
| + </div> |
| + <table class="stored-pages-table"> |
| + <thead> |
| + <tr> |
| + <th> </th> |
| + <th>URL</th> |
| + <th>Namespace</th> |
| + <th>Size</th> |
| + </tr> |
| + </thead> |
| + <tbody id="stored-pages"> |
| + </tbody> |
|
Dan Beam
2016/06/06 23:36:12
nit: <tbody id="stored-pages"></tbody>
chili
2016/06/06 23:51:00
Done.
|
| + </table> |
| + |
| + <h2>Request Queue</h2> |
| + <table class="request-queue-table"> |
| + <thead> |
| + <tr> |
| + <th>URL</th> |
| + <th>Created Timestamp</th> |
| + <th>Status</th> |
| + </tr> |
| + </thead> |
| + <tbody id="request-queue"> |
|
Dan Beam
2016/06/06 23:36:12
nit: also fits in 1 line
chili
2016/06/06 23:51:00
Done.
|
| + </tbody> |
| + </table> |
| + </body> |
| +</html> |