Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(12)

Side by Side Diff: chrome/browser/resources/offline_pages/offline_internals.html

Issue 2172443004: [Offline Pages] Add network status, save request textbox, and offline url link to offline internals… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update SavePageRequest call after rebase Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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">
11 <script src="chrome://resources/js/load_time_data.js"></script> 11 <script src="chrome://resources/js/load_time_data.js"></script>
12 <script src="chrome://resources/js/util.js"></script> 12 <script src="chrome://resources/js/util.js"></script>
13 <script src="strings.js"></script> 13 <script src="strings.js"></script>
14 <script src="offline_internals_browser_proxy.js"></script> 14 <script src="offline_internals_browser_proxy.js"></script>
15 <script src="offline_internals.js"></script> 15 <script src="offline_internals.js"></script>
16 </head> 16 </head>
17 <body> 17 <body>
18 <h1>Offline Internals</h1> 18 <h1>Offline Internals</h1>
19 <div> 19 <div>
20 <div id="current-status"></div> 20 <span id="current-status"></span>
21 <button id="refresh">Refresh page</button> 21 <button id="refresh">Refresh page</button>
22 <button id="download">Dump</button> 22 <button id="download">Dump</button>
23 </div> 23 </div>
24 24
25 <h2>Event Logs</h2> 25 <h2>Event Logs</h2>
26 <div> 26 <div>
27 <button id="refresh-logs">Refresh Logs</button> 27 <button id="refresh-logs">Refresh Logs</button>
28 <div> 28 <div>
29 Page Model Log: <span id="model-status"></span> 29 Page Model Log: <span id="model-status"></span>
30 <button id="log-model-on">Enable</button> 30 <button id="log-model-on">Enable</button>
(...skipping 30 matching lines...) Expand all
61 <table class="request-queue-table"> 61 <table class="request-queue-table">
62 <thead> 62 <thead>
63 <tr> 63 <tr>
64 <th>URL</th> 64 <th>URL</th>
65 <th>Created Timestamp</th> 65 <th>Created Timestamp</th>
66 <th>Status</th> 66 <th>Status</th>
67 </tr> 67 </tr>
68 </thead> 68 </thead>
69 <tbody id="request-queue"> </tbody> 69 <tbody id="request-queue"> </tbody>
70 </table> 70 </table>
71 <input id="url" type="url">
72 <button id="add-to-queue">Load in background</button>
73 <div id="save-url-state"></div>
71 </body> 74 </body>
72 </html> 75 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698