| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2015 The Chromium Authors. All rights reserved. | 2 Copyright 2015 The Chromium Authors. All rights reserved. |
| 3 Use of this source code is governed by a BSD-style license that can be | 3 Use of this source code is governed by a BSD-style license that can be |
| 4 found in the LICENSE file. | 4 found in the LICENSE file. |
| 5 --> | 5 --> |
| 6 <!DOCTYPE html> | 6 <!DOCTYPE html> |
| 7 <html> | 7 <html> |
| 8 <head> | 8 <head> |
| 9 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
| 10 <if expr="is_android or is_ios"> | 10 <if expr="is_android or is_ios"> |
| 11 <meta name="viewport" content="width=device-width, initial-scale=1.0, | 11 <meta name="viewport" content="width=device-width, initial-scale=1.0, |
| 12 maximum-scale=1.0, user-scalable=no"> | 12 maximum-scale=1.0, user-scalable=no"> |
| 13 </if> | 13 </if> |
| 14 <title>Popular Sites Internals</title> | 14 <title>Popular Sites Internals</title> |
| 15 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 15 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 16 <link rel="stylesheet" href="chrome://resources/css/list.css"> | 16 <link rel="stylesheet" href="chrome://resources/css/list.css"> |
| 17 <link rel="stylesheet" href="popular_sites_internals.css"> | 17 <link rel="stylesheet" href="popular_sites_internals.css"> |
| 18 <script src="chrome://resources/js/cr.js"></script> | 18 <script src="chrome://resources/js/cr.js"></script> |
| 19 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 19 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 20 <script src="chrome://resources/js/load_time_data.js"></script> | 20 <script src="chrome://resources/js/load_time_data.js"></script> |
| 21 <script src="chrome://resources/js/util.js"></script> | 21 <script src="chrome://resources/js/util.js"></script> |
| 22 <if expr="is_ios"> |
| 23 <!-- TODO(crbug.com/487000): Remove this once injected by web. --> |
| 24 <script src="chrome://resources/js/ios/web_ui.js"></script> |
| 25 </if> |
| 22 <script src="popular_sites_internals.js"></script> | 26 <script src="popular_sites_internals.js"></script> |
| 23 </head> | 27 </head> |
| 24 | 28 |
| 25 <body> | 29 <body> |
| 26 <div id="info"> | 30 <div id="info"> |
| 27 <div class="section" jsskip="true"> | 31 <div class="section" jsskip="true"> |
| 28 <h2>Download</h2> | 32 <h2>Download</h2> |
| 29 <table class="section-details"> | 33 <table class="section-details"> |
| 30 <tr> | 34 <tr> |
| 31 <td class="detail">URL (takes precedence over Country and Version)</td> | 35 <td class="detail">URL (takes precedence over Country and Version)</td> |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 </td> | 75 </td> |
| 72 <td class="value"><pre id="json-value"></pre></td> | 76 <td class="value"><pre id="json-value"></pre></td> |
| 73 </tr> | 77 </tr> |
| 74 </table> | 78 </table> |
| 75 </div> | 79 </div> |
| 76 </div> | 80 </div> |
| 77 | 81 |
| 78 </body> | 82 </body> |
| 79 </html> | 83 </html> |
| 80 | 84 |
| OLD | NEW |