| 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"> |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 </if> | 24 </if> |
| 25 <script src="popular_sites_internals.js"></script> | 25 <script src="popular_sites_internals.js"></script> |
| 26 </head> | 26 </head> |
| 27 | 27 |
| 28 <body> | 28 <body> |
| 29 <div id="info"> | 29 <div id="info"> |
| 30 <div class="section" jsskip="true"> | 30 <div class="section" jsskip="true"> |
| 31 <h2>Download</h2> | 31 <h2>Download</h2> |
| 32 <table class="section-details"> | 32 <table class="section-details"> |
| 33 <tr> | 33 <tr> |
| 34 <td class="detail">URL (takes precedence over Country and Version)</td> | 34 <td class="detail">URL (takes precedence over Directory, Country and Ver
sion)</td> |
| 35 <td class="value"><input id="override-url" type="text"></td> | 35 <td class="value"><input id="override-url" type="text"></td> |
| 36 </tr> | 36 </tr> |
| 37 <tr> | 37 <tr> |
| 38 <td class="detail">Override Directory</td> |
| 39 <td class="value"><input id="override-directory" type="text"></td> |
| 40 </tr> |
| 41 <tr> |
| 38 <td class="detail">Override Country</td> | 42 <td class="detail">Override Country</td> |
| 39 <td class="value"><input id="override-country" type="text"></td> | 43 <td class="value"><input id="override-country" type="text"></td> |
| 40 </tr> | 44 </tr> |
| 41 <tr> | 45 <tr> |
| 42 <td class="detail">Override Version</td> | 46 <td class="detail">Override Version</td> |
| 43 <td class="value"><input id="override-version" type="text"></td> | 47 <td class="value"><input id="override-version" type="text"></td> |
| 44 </tr> | 48 </tr> |
| 45 <tr> | 49 <tr> |
| 46 <td class="detail"> | 50 <td class="detail"> |
| 47 <input id="submit-update" type="submit" value="Update"> | 51 <input id="submit-update" type="submit" value="Update"> |
| (...skipping 25 matching lines...) Expand all Loading... |
| 73 <input id="view-json" type="submit" value="View JSON"> | 77 <input id="view-json" type="submit" value="View JSON"> |
| 74 </td> | 78 </td> |
| 75 <td class="value"><pre id="json-value"></pre></td> | 79 <td class="value"><pre id="json-value"></pre></td> |
| 76 </tr> | 80 </tr> |
| 77 </table> | 81 </table> |
| 78 </div> | 82 </div> |
| 79 </div> | 83 </div> |
| 80 | 84 |
| 81 </body> | 85 </body> |
| 82 </html> | 86 </html> |
| 83 | |
| OLD | NEW |