| OLD | NEW |
| (Empty) | |
| 1 <!-- |
| 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 |
| 4 found in the LICENSE file. |
| 5 --> |
| 6 <!DOCTYPE html> |
| 7 <html> |
| 8 <head> |
| 9 <meta charset="utf-8"> |
| 10 <if expr="is_android or is_ios"> |
| 11 <meta name="viewport" content="width=device-width, initial-scale=1.0, |
| 12 maximum-scale=1.0, user-scalable=no"> |
| 13 </if> |
| 14 <title>Popular Sites Internals</title> |
| 15 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 16 <link rel="stylesheet" href="chrome://resources/css/list.css"> |
| 17 <link rel="stylesheet" href="popular_sites_internals.css"> |
| 18 <script src="chrome://resources/js/cr.js"></script> |
| 19 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 20 <script src="chrome://resources/js/load_time_data.js"></script> |
| 21 <script src="chrome://resources/js/util.js"></script> |
| 22 <script src="popular_sites_internals.js"></script> |
| 23 </head> |
| 24 |
| 25 <body> |
| 26 <div id="info"> |
| 27 <div class="section" jsskip="true"> |
| 28 <h2>Download</h2> |
| 29 <table class="section-details"> |
| 30 <tr> |
| 31 <td class="detail">Country</td> |
| 32 <td class="value"><input id="country-input" type="text"></td> |
| 33 </tr> |
| 34 <tr> |
| 35 <td class="detail">Version</td> |
| 36 <td class="value"><input id="version-input" type="text"></td> |
| 37 </tr> |
| 38 <tr> |
| 39 <td class="detail"> |
| 40 <input id="submit-download" type="submit" value="Download"> |
| 41 </td> |
| 42 <td id="download-result" class="value"></td> |
| 43 </tr> |
| 44 </table> |
| 45 </div> |
| 46 |
| 47 <div id="sites" class="section"> |
| 48 <h2>Sites</h2> |
| 49 <table class="section-details"> |
| 50 <tr jsselect="sites"> |
| 51 <td class="detail" jscontent="title"></td> |
| 52 <td class="value" jscontent="url"></td> |
| 53 </tr> |
| 54 </table> |
| 55 </div> |
| 56 </div> |
| 57 |
| 58 </body> |
| 59 </html> |
| 60 |
| OLD | NEW |