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"> |
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.js"></script> | 15 <script src="offline_internals.js"></script> |
15 </head> | 16 </head> |
16 <body> | 17 <body> |
17 <h1>Offline Internals</h1> | 18 <h1>Offline Internals</h1> |
18 <div> | 19 <div> |
19 <div id="current-status"></div> | 20 <div id="current-status"></div> |
20 <button id="refresh">Refresh page</button> | 21 <button id="refresh">Refresh page</button> |
21 <button id="download">Dump</button> | 22 <button id="download">Dump</button> |
22 </div> | 23 </div> |
23 | 24 |
(...skipping 21 matching lines...) Expand all Loading... |
45 <tr> | 46 <tr> |
46 <th>URL</th> | 47 <th>URL</th> |
47 <th>Created Timestamp</th> | 48 <th>Created Timestamp</th> |
48 <th>Status</th> | 49 <th>Status</th> |
49 </tr> | 50 </tr> |
50 </thead> | 51 </thead> |
51 <tbody id="request-queue"> </tbody> | 52 <tbody id="request-queue"> </tbody> |
52 </table> | 53 </table> |
53 </body> | 54 </body> |
54 </html> | 55 </html> |
OLD | NEW |