Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(533)

Side by Side Diff: components/ntp_tiles/webui/resources/ntp_tiles_internals.html

Issue 2572133002: Add more features to ntp-tiles-internal (Closed)
Patch Set: Add ntp_tiles owners to client webui owners Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <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 26 matching lines...) Expand all
37 <tr> 37 <tr>
38 <td class="detail">enabled</td> 38 <td class="detail">enabled</td>
39 <td class="value" jsdisplay="$this">yes</td> 39 <td class="value" jsdisplay="$this">yes</td>
40 <td class="value" jsdisplay="!$this">no</td> 40 <td class="value" jsdisplay="!$this">no</td>
41 </tr> 41 </tr>
42 <tr> 42 <tr>
43 <th colspan="2">SUGGESTIONS_SERVICE</th> 43 <th colspan="2">SUGGESTIONS_SERVICE</th>
44 </tr> 44 </tr>
45 </tbody> 45 </tbody>
46 <tbody jsselect="suggestionsService"> 46 <tbody jsselect="suggestionsService">
47 <tr> 47 <tr jsdisplay="$this">
48 <td class="detail">
49 <input id="suggestions-fetch" type="submit" value="Fetch"></input>
50 </td>
51 <td class="value" jscontent="status"></td>
52 </tr>
53 <tr jsdisplay="!$this">
48 <td class="detail">enabled</td> 54 <td class="detail">enabled</td>
49 <td class="value" jsdisplay="$this">yes</td> 55 <td class="value">no</td>
50 <td class="value" jsdisplay="!$this">no</td>
51 </tr> 56 </tr>
52 </tbody> 57 </tbody>
53 <tbody jsselect="popular"> 58 <tbody jsselect="popular">
54 <tr> 59 <tr>
55 <th colspan="2">POPULAR</th> 60 <th colspan="2">POPULAR</th>
56 </tr> 61 </tr>
57 <tr jsdisplay="$this"> 62 <tr jsdisplay="$this">
58 <td class="detail">URL</td> 63 <td class="detail">URL</td>
59 <td class="value"><input id="override-url" type="text" jsvalues="value :overrideURL;placeholder:url"></td> 64 <td class="value"><input id="override-url" type="text" jsvalues="value :overrideURL;placeholder:url"></td>
60 </tr> 65 </tr>
61 <tr jsdisplay="$this"> 66 <tr jsdisplay="$this">
62 <td class="detail">Country</td> 67 <td class="detail">Country</td>
63 <td class="value"><input id="override-country" type="text" jsvalues="v alue:overrideCountry;placeholder:country"></td> 68 <td class="value"><input id="override-country" type="text" jsvalues="v alue:overrideCountry;placeholder:country"></td>
64 </tr> 69 </tr>
65 <tr jsdisplay="$this"> 70 <tr jsdisplay="$this">
66 <td class="detail">Version</td> 71 <td class="detail">Version</td>
67 <td class="value"><input id="override-version" type="text" jsvalues="v alues:overrideVersion;placeholder:version"></td> 72 <td class="value"><input id="override-version" type="text" jsvalues="v alues:overrideVersion;placeholder:version"></td>
68 </tr> 73 </tr>
74 <tr jsdisplay="$this">
75 <td class="detail">
76 <input id="popular-view-json" type="submit", value="View JSON"></inp ut>
77 </td>
78 <td class="value"><pre id="popular-json-value" jscontent="json"></pre> </td>
79 </tr>
69 <tr jsdisplay="!$this"> 80 <tr jsdisplay="!$this">
70 <td class="detail">enabled</td> 81 <td class="detail">enabled</td>
71 <td class="value">no</td> 82 <td class="value">no</td>
72 </tr> 83 </tr>
73 </tbody> 84 </tbody>
74 <tbody jsselect="whitelist"> 85 <tbody jsselect="whitelist">
75 <tr> 86 <tr>
76 <th colspan="2">WHITELIST</th> 87 <th colspan="2">WHITELIST</th>
77 </tr> 88 </tr>
78 <tr> 89 <tr>
(...skipping 29 matching lines...) Expand all
108 <td class="value"><a jsvalues="href:url" jscontent="url"></a></td> 119 <td class="value"><a jsvalues="href:url" jscontent="url"></a></td>
109 </tr> 120 </tr>
110 </tbody> 121 </tbody>
111 </table> 122 </table>
112 </div> 123 </div>
113 </div> 124 </div>
114 125
115 </body> 126 </body>
116 </html> 127 </html>
117 128
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698