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

Side by Side Diff: chrome/browser/resources/snippets_internals.html

Issue 1883523002: chrome://snippets-internals page for debugging NTP snippets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implementing last suggestions from Bernhard Created 4 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
(Empty)
1 <!--
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
4 found in the LICENSE file.
5 -->
6 <!DOCTYPE html>
7 <meta charset="utf-8">
8 <if expr="is_android or is_ios">
9 <meta name="viewport" content="width=device-width, initial-scale=1.0,
10 maximum-scale=1.0, user-scalable=no">
11 </if>
12 <title>Snippets Internals</title>
13 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
14 <link rel="stylesheet" href="snippets_internals.css">
15 <script src="chrome://resources/js/cr.js"></script>
16 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
17 <script src="chrome://resources/js/util.js"></script>
18 <script src="snippets_internals.js"></script>
19
20 <div id="info">
21 <div class="section">
22 <h2>Properties</h2>
23 <table class="section-details">
24 <tr>
25 <td class="name">Snippets enabled
26 <td id="flag-snippets" class="value">
27 <tr>
28 <td class="name">Snippets restricted to hosts
29 <td id="switch-restrict-to-hosts" class="value">
30 </table>
31 </div>
32
33 <div id="snippets" class="section">
34 <h2>Snippets <span class="detail">(click for details)</span></h2>
35 <table class="section-details">
36 <tr jsselect="list" style="display:none">
37 <td class="title-link">
38 <span class="snippet-title" jsvalues="snippet-id:id">
39 <span jscontent="title"></span>&gt;&gt;</span>
40 <div jsvalues="id:id" class="snippet-detail snippet-hidden">
41 <table>
42 <tr>
43 <td>Validity
44 <td class="expiry">
45 <span class="date" jscontent="published"></span> &ndash;
46 <span class="date" jscontent="expires"></span>
47 <tr>
48 <td>Site title
49 <td jscontent="siteTitle">
50 <tr>
51 <td>Text
52 <td jscontent="snippet">
53 <tr>
54 <td>URL
55 <td><a class="url" jsvalues="href:url" jscontent="url"></a>
56 <tr>
57 <td>Favicon
58 <td><a class="url" jsvalues="href:faviconUrl"
59 jscontent="faviconUrl"></a>
60 <tr>
61 <td>Salient image
62 <td><a class="url" jsvalues="href:salientImageUrl"
63 jscontent="salientImageUrl"></a>
64 </table>
65 </div>
66 </table>
67 <div class="detail" id="snippets-empty"></div>
68 <div class="forms">
69 <input id="submit-clear" type="submit" value="Clear the list">
70 </div>
71 <div class="forms">
72 <input id="submit-download" type="submit" value="Add snippets">
73 from hosts <input id="hosts-input" type="text" placeholder=
74 "www.wired.com www.bbc.co.uk">
75 <div id="hosts-help" class="detail"></div>
76 </div>
77 </div>
78
79 <div id="discarded-snippets" class="section">
80 <h2>Discarded snippets <span class="detail">(click for details)</span></h2>
81 <table class="section-details">
82 <tr jsselect="list" style="display:none">
83 <td class="title-link">
84 <span class="discarded-snippet-title" jsvalues="snippet-id:id">
85 <span jscontent="title"></span> &gt;&gt;</span>
86 <div jsvalues="id:id" class="snippet-detail snippet-hidden">
87 <table>
88 <tr>
89 <td>Validity
90 <td class="expiry">
91 <span class="date" jscontent="published"></span> &ndash;
92 <span class="date" jscontent="expires"></span>
93 <tr>
94 <td>Site title
95 <td jscontent="siteTitle">
96 <tr>
97 <td>Text
98 <td jscontent="snippet">
99 <tr>
100 <td>URL
101 <td><a class="url" jsvalues="href:url" jscontent="url"></a>
102 <tr>
103 <td>Favicon
104 <td><a class="url" jsvalues="href:faviconUrl"
105 jscontent="faviconUrl"></a>
106 <tr>
107 <td>Salient image
108 <td><a class="url" jsvalues="href:salientImageUrl"
109 jscontent="salientImageUrl"></a>
110 </table>
111 </div>
112 </table>
113 <div class="detail" id="discarded-snippets-empty"></div>
114 <div class="forms">
115 <input id="discarded-snippets-clear" type="submit" value="Clear list">
116 </div>
117 </div>
118
119 <div id="hosts" class="section">
120 <h2>Suggestion hosts</h2>
121 <table class="section-details">
122 <tr jsselect="list">
123 <td jscontent="url">
124 </table>
125 <div class="detail" id="hosts-empty"></div>
126 </div>
127 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/snippets_internals.css ('k') | chrome/browser/resources/snippets_internals.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698