| OLD | NEW |
| 1 <!-- | 1 <!-- |
| 2 Copyright 2016 The Chromium Authors. All rights reserved. | 2 Copyright 2016 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 <meta charset="utf-8"> | 7 <meta charset="utf-8"> |
| 8 <if expr="is_android or is_ios"> | 8 <if expr="is_android or is_ios"> |
| 9 <meta name="viewport" content="width=device-width, initial-scale=1.0"> | 9 <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| 10 </if> | 10 </if> |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 </table> | 68 </table> |
| 69 <button id="clear-classification" type="button"> | 69 <button id="clear-classification" type="button"> |
| 70 Clear my classification | 70 Clear my classification |
| 71 </button> | 71 </button> |
| 72 </div> | 72 </div> |
| 73 | 73 |
| 74 <div id="snippets"> | 74 <div id="snippets"> |
| 75 <h2>NTPSnippetsService</h2> | 75 <h2>NTPSnippetsService</h2> |
| 76 <div class="forms"> | 76 <div class="forms"> |
| 77 <button id="submit-download" type="button">Add snippets</button> | 77 <button id="submit-download" type="button">Add snippets</button> |
| 78 <span id="hosts-restrict">from hosts: | 78 <span id="remote-status" class="detail"></span> |
| 79 <textarea id="hosts-input" placeholder="www.wired.com www.bbc.co.uk" | |
| 80 rows="5" autocapitalize="none"></textarea> | |
| 81 </span> | |
| 82 <span id="hosts-status" class="detail"></span> | |
| 83 </div> | 79 </div> |
| 84 </div> | 80 </div> |
| 85 | 81 |
| 86 <div id="last-json" class="hidden"> | 82 <div id="last-json" class="hidden"> |
| 87 <h2>Last JSON from Server</h2> | 83 <h2>Last JSON from Server</h2> |
| 88 <a id="last-json-button">Show the last JSON >></a> | 84 <a id="last-json-button">Show the last JSON >></a> |
| 89 <div id="last-json-container" class="hidden"> | 85 <div id="last-json-container" class="hidden"> |
| 90 <div id="last-json-text"></div> | 86 <div id="last-json-text"></div> |
| 91 <button id="last-json-dump" type="button">Dump the last JSON</button> | 87 <button id="last-json-dump" type="button">Dump the last JSON</button> |
| 92 </div> | 88 </div> |
| (...skipping 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 198 <tr> | 194 <tr> |
| 199 <td>Publisher name | 195 <td>Publisher name |
| 200 <td jscontent="publisherName"> | 196 <td jscontent="publisherName"> |
| 201 </table> | 197 </table> |
| 202 </div> | 198 </div> |
| 203 </table> | 199 </table> |
| 204 </div> | 200 </div> |
| 205 <div class="detail" id="content-suggestions-empty"></div> | 201 <div class="detail" id="content-suggestions-empty"></div> |
| 206 </div> | 202 </div> |
| 207 </div> | 203 </div> |
| OLD | NEW |