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

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

Issue 2003883002: [Offline pages] Create offline internals page for Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix minor spelling mishaps Created 4 years, 6 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
(Empty)
1 <!doctype html>
2 <html i18n-values="dir:textdirection;lang:language">
Dan Beam 2016/05/31 22:00:59 when is lang not "en" or dir not "ltr"?
chili 2016/06/02 02:38:53 copy/pasted from another file :/
3 <head>
4 <meta charset="utf-8">
5 <title>Offline Internals</title>
6 <if expr="is_android">
Dan Beam 2016/05/31 22:00:59 when is this false?
chili 2016/06/02 02:38:53 Done.
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">
Dan Beam 2016/05/31 22:00:59 note: some of these files may be inlined in your c
chili 2016/06/02 02:38:53 Acknowledged. I think for now I want them in sepa
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>&nbsp;</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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698