| 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> |
| 11 <title>Snippets Internals</title> | 11 <title>Snippets Internals</title> |
| 12 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> | 12 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
| 13 <link rel="stylesheet" href="snippets_internals.css"> | 13 <link rel="stylesheet" href="snippets_internals.css"> |
| 14 <script src="chrome://resources/js/cr.js"></script> | 14 <script src="chrome://resources/js/cr.js"></script> |
| 15 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 15 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 16 <script src="chrome://resources/js/util.js"></script> | 16 <script src="chrome://resources/js/util.js"></script> |
| 17 <script src="snippets_internals.js"></script> | 17 <script src="snippets_internals.js"></script> |
| 18 | 18 |
| 19 <div id="info"> | 19 <div id="info"> |
| 20 <div> | 20 <div> |
| 21 <h2>Properties</h2> | 21 <h2>Properties</h2> |
| 22 <table class="section-details"> | 22 <table class="section-details"> |
| 23 <tr> | 23 <tr> |
| 24 <td class="name">Snippets enabled | |
| 25 <td id="flag-snippets" class="value"> | |
| 26 <tr> | |
| 27 <td class="name">Article Suggestions enabled | 24 <td class="name">Article Suggestions enabled |
| 28 <td id="flag-article-suggestions" class="value"> | 25 <td id="flag-article-suggestions" class="value"> |
| 29 <tr> | 26 <tr> |
| 30 <td class="name">Recent Tab Suggestions enabled | 27 <td class="name">Recent Tab Suggestions enabled |
| 31 <td id="flag-recent-offline-tab-suggestions" class="value"> | 28 <td id="flag-recent-offline-tab-suggestions" class="value"> |
| 32 <tr> | 29 <tr> |
| 33 <td class="name">Offlining Recent Tabs enabled | 30 <td class="name">Offlining Recent Tabs enabled |
| 34 <td id="flag-offlining-recent-pages-feature" class="value"> | 31 <td id="flag-offlining-recent-pages-feature" class="value"> |
| 35 <tr> | 32 <tr> |
| 36 <td class="name">Asset Download Suggestions enabled | 33 <td class="name">Asset Download Suggestions enabled |
| (...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 <tr> | 187 <tr> |
| 191 <td>Publisher name | 188 <td>Publisher name |
| 192 <td jscontent="publisherName"> | 189 <td jscontent="publisherName"> |
| 193 </table> | 190 </table> |
| 194 </div> | 191 </div> |
| 195 </table> | 192 </table> |
| 196 </div> | 193 </div> |
| 197 <div class="detail" id="content-suggestions-empty"></div> | 194 <div class="detail" id="content-suggestions-empty"></div> |
| 198 </div> | 195 </div> |
| 199 </div> | 196 </div> |
| OLD | NEW |