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

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

Issue 2841643005: [Popular Sites] Add Variations parameter to override URL path (Closed)
Patch Set: Update ntp-tiles-internals. Created 3 years, 8 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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 <tbody jsselect="popular"> 58 <tbody jsselect="popular">
59 <tr> 59 <tr>
60 <th colspan="2">POPULAR</th> 60 <th colspan="2">POPULAR</th>
61 </tr> 61 </tr>
62 <tr jsdisplay="$this"> 62 <tr jsdisplay="$this">
63 <td class="detail">URL</td> 63 <td class="detail">URL</td>
64 <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>
65 </tr> 65 </tr>
66 <tr jsdisplay="$this"> 66 <tr jsdisplay="$this">
67 <td class="detail">Country</td> 67 <td class="detail">Country</td>
68 <td class="value"><input id="override-directory" type="text" jsvalues= "value:overrideDirectory;placeholder:directory"></td>
69 </tr>
70 <tr jsdisplay="$this">
71 <td class="detail">Country</td>
68 <td class="value"><input id="override-country" type="text" jsvalues="v alue:overrideCountry;placeholder:country"></td> 72 <td class="value"><input id="override-country" type="text" jsvalues="v alue:overrideCountry;placeholder:country"></td>
69 </tr> 73 </tr>
70 <tr jsdisplay="$this"> 74 <tr jsdisplay="$this">
71 <td class="detail">Version</td> 75 <td class="detail">Version</td>
72 <td class="value"><input id="override-version" type="text" jsvalues="v alues:overrideVersion;placeholder:version"></td> 76 <td class="value"><input id="override-version" type="text" jsvalues="v alues:overrideVersion;placeholder:version"></td>
73 </tr> 77 </tr>
74 <tr jsdisplay="$this"> 78 <tr jsdisplay="$this">
75 <td class="detail"> 79 <td class="detail">
76 <input id="popular-view-json" type="submit", value="View JSON"></inp ut> 80 <input id="popular-view-json" type="submit", value="View JSON"></inp ut>
77 </td> 81 </td>
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 <td class="detail">URL</td> 122 <td class="detail">URL</td>
119 <td class="value"><a jsvalues="href:url" jscontent="url"></a></td> 123 <td class="value"><a jsvalues="href:url" jscontent="url"></a></td>
120 </tr> 124 </tr>
121 </tbody> 125 </tbody>
122 </table> 126 </table>
123 </div> 127 </div>
124 </div> 128 </div>
125 129
126 </body> 130 </body>
127 </html> 131 </html>
128
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698