Chromium Code Reviews| 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"> |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 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"> | 71 <input id="url" type="url"> |
| 72 <button id="add-to-queue">Load in background</button> | 72 <button id="add-to-queue">Load in background</button> |
| 73 Use comma to separate multiple URLs. | |
|
michaelpg
2016/08/14 21:31:19
grammar nit: "Use commas"
chili
2016/08/15 18:27:08
Maybe you feel differently, but I would also put t
romax
2016/08/19 18:53:35
Done.
| |
| 73 <div id="save-url-state"></div> | 74 <div id="save-url-state"></div> |
| 74 </body> | 75 </body> |
| 75 </html> | 76 </html> |
| OLD | NEW |