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

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

Issue 2936793002: ntp_tiles: Extend chrome://ntp-tiles-internals with favicon data (Closed)
Patch Set: Created 3 years, 6 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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 <td class="value" jsdisplay="source == 0">TOP_SITES</td> 115 <td class="value" jsdisplay="source == 0">TOP_SITES</td>
116 <td class="value" jsdisplay="source == 1">SUGGESTIONS_SERVICE</td> 116 <td class="value" jsdisplay="source == 1">SUGGESTIONS_SERVICE</td>
117 <td class="value" jsdisplay="source == 2">POPULAR</td> 117 <td class="value" jsdisplay="source == 2">POPULAR</td>
118 <td class="value" jsdisplay="source == 3">WHITELIST</td> 118 <td class="value" jsdisplay="source == 3">WHITELIST</td>
119 <td class="value" jsdisplay="source &gt; 3">???</td> 119 <td class="value" jsdisplay="source &gt; 3">???</td>
120 </tr> 120 </tr>
121 <tr> 121 <tr>
122 <td class="detail">URL</td> 122 <td class="detail">URL</td>
123 <td class="value"><a jsvalues="href:url" jscontent="url"></a></td> 123 <td class="value"><a jsvalues="href:url" jscontent="url"></a></td>
124 </tr> 124 </tr>
125 <tr jsselect="icons">
126 <td class="detail" jscontent="type"></td>
127 <td class="value" jscontent="url"></td>
sfiera 2017/06/13 08:56:01 Linkify this, like URL above?
128 </tr>
125 </tbody> 129 </tbody>
126 </table> 130 </table>
127 </div> 131 </div>
128 </div> 132 </div>
129 133
130 </body> 134 </body>
131 </html> 135 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698