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

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

Issue 2142703002: [Offline Pages] Showing expired pages in internal page. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix tests. 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
« no previous file with comments | « no previous file | chrome/browser/resources/offline_pages/offline_internals.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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">
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 <button id="clear-all">Clear all</button> 43 <button id="clear-all">Clear all</button>
44 <button id="clear-selected">Clear selected</button> 44 <button id="clear-selected">Clear selected</button>
45 </div> 45 </div>
46 <table class="stored-pages-table"> 46 <table class="stored-pages-table">
47 <thead> 47 <thead>
48 <tr> 48 <tr>
49 <th>&nbsp;</th> 49 <th>&nbsp;</th>
50 <th>URL</th> 50 <th>URL</th>
51 <th>Namespace</th> 51 <th>Namespace</th>
52 <th>Size (Kb)</th> 52 <th>Size (Kb)</th>
53 <th>Expired</th>
53 </tr> 54 </tr>
54 </thead> 55 </thead>
55 <tbody id="stored-pages"> </tbody> 56 <tbody id="stored-pages"> </tbody>
56 </table> 57 </table>
57 <div id="page-actions-info"></div> 58 <div id="page-actions-info"></div>
58 59
59 <h2>Request Queue</h2> 60 <h2>Request Queue</h2>
60 <table class="request-queue-table"> 61 <table class="request-queue-table">
61 <thead> 62 <thead>
62 <tr> 63 <tr>
63 <th>URL</th> 64 <th>URL</th>
64 <th>Created Timestamp</th> 65 <th>Created Timestamp</th>
65 <th>Status</th> 66 <th>Status</th>
66 </tr> 67 </tr>
67 </thead> 68 </thead>
68 <tbody id="request-queue"> </tbody> 69 <tbody id="request-queue"> </tbody>
69 </table> 70 </table>
70 </body> 71 </body>
71 </html> 72 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/offline_pages/offline_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698