Chromium Code Reviews| 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 30 matching lines...) Expand all Loading... | |
| 41 </tr> | 41 </tr> |
| 42 <tr> | 42 <tr> |
| 43 <td class="detail"> | 43 <td class="detail"> |
| 44 <input id="submit-download" type="submit" value="Download"> | 44 <input id="submit-download" type="submit" value="Download"> |
| 45 </td> | 45 </td> |
| 46 <td id="download-result" class="value"></td> | 46 <td id="download-result" class="value"></td> |
| 47 </tr> | 47 </tr> |
| 48 </table> | 48 </table> |
| 49 </div> | 49 </div> |
| 50 | 50 |
| 51 <div class="section" jsskip="true"> | |
| 52 <h2>Info</h2> | |
| 53 <table class="section-details"> | |
| 54 <tr> | |
| 55 <td class="detail">Country</td> | |
| 56 <td class="value" id="country"></td> | |
|
Bernhard Bauer
2016/04/06 15:41:54
Is there a reason we can't just use jstemplate to
Marc Treib
2016/04/06 16:37:10
Err.. ignorance? :)
Done.
| |
| 57 </tr> | |
| 58 <tr> | |
| 59 <td class="detail">Version</td> | |
| 60 <td class="value" id="version"></td> | |
| 61 </tr> | |
| 62 </table> | |
| 63 </div> | |
| 64 | |
| 51 <div id="sites" class="section"> | 65 <div id="sites" class="section"> |
| 52 <h2>Sites</h2> | 66 <h2>Sites</h2> |
| 53 <table class="section-details"> | 67 <table class="section-details"> |
| 54 <tr jsselect="sites"> | 68 <tr jsselect="sites"> |
| 55 <td class="detail" jscontent="title"></td> | 69 <td class="detail" jscontent="title"></td> |
| 56 <td class="value" jscontent="url"></td> | 70 <td class="value" jscontent="url"></td> |
| 57 </tr> | 71 </tr> |
| 58 <tr jsskip = true> | 72 <tr jsskip="true"> |
| 59 <td class="detail"> | 73 <td class="detail"> |
| 60 <input id="view-json" type="submit" value="View JSON"> | 74 <input id="view-json" type="submit" value="View JSON"> |
| 61 </td> | 75 </td> |
| 62 <td class="value"><pre id="json-value"></pre></td> | 76 <td class="value"><pre id="json-value"></pre></td> |
| 63 </tr> | 77 </tr> |
| 64 </table> | 78 </table> |
| 65 </div> | 79 </div> |
| 66 </div> | 80 </div> |
| 67 | 81 |
| 68 </body> | 82 </body> |
| 69 </html> | 83 </html> |
| 70 | 84 |
| OLD | NEW |