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

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

Issue 1927993002: Allow dumping raw json fetched from the server. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Some fixes Created 4 years, 7 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 <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 maximum-scale=1.0, user-scalable=no"> 10 maximum-scale=1.0, user-scalable=no">
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 <tr> 60 <tr>
61 <td>Salient image 61 <td>Salient image
62 <td><a class="url" jsvalues="href:salientImageUrl" 62 <td><a class="url" jsvalues="href:salientImageUrl"
63 jscontent="salientImageUrl"></a> 63 jscontent="salientImageUrl"></a>
64 </table> 64 </table>
65 </div> 65 </div>
66 </table> 66 </table>
67 <div class="detail" id="snippets-empty"></div> 67 <div class="detail" id="snippets-empty"></div>
68 <div class="forms"> 68 <div class="forms">
69 <input id="submit-clear" type="submit" value="Clear the list"> 69 <input id="submit-clear" type="submit" value="Clear the list">
70 <input id="submit-dump" type="submit" value="Dump the list to downloads"> 70 <input id="submit-dump" type="submit" value="Dump the list">
71 </div> 71 </div>
72 <div class="forms"> 72 <div class="forms">
73 <input id="submit-download" type="submit" value="Add snippets"> 73 <input id="submit-download" type="submit" value="Add snippets">
74 from hosts <span id="hosts-help" class="detail"></span>: 74 from hosts <span id="hosts-help" class="detail"></span>:
75 <textarea id="hosts-input" placeholder="www.wired.com www.bbc.co.uk" 75 <textarea id="hosts-input" placeholder="www.wired.com www.bbc.co.uk"
76 rows="5"></textarea> 76 rows="5"></textarea>
77 <input id="download-dump" type="checkbox"> Dump the new snippets
77 <div id="hosts-status" class="detail"></div> 78 <div id="hosts-status" class="detail"></div>
78 </div> 79 </div>
79 </div> 80 </div>
80 81
81 <div id="discarded-snippets" class="section"> 82 <div id="discarded-snippets" class="section">
82 <h2>Discarded snippets <span class="detail">(click for details)</span></h2> 83 <h2>Discarded snippets <span class="detail">(click for details)</span></h2>
83 <table class="section-details"> 84 <table class="section-details">
84 <tr jsselect="list" style="display:none"> 85 <tr jsselect="list" style="display:none">
85 <td class="title-link"> 86 <td class="title-link">
86 <span class="discarded-snippet-title" jsvalues="snippet-id:id"> 87 <span class="discarded-snippet-title" jsvalues="snippet-id:id">
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 121
121 <div id="hosts" class="section"> 122 <div id="hosts" class="section">
122 <h2>Suggestion hosts</h2> 123 <h2>Suggestion hosts</h2>
123 <table class="section-details"> 124 <table class="section-details">
124 <tr jsselect="list"> 125 <tr jsselect="list">
125 <td jscontent="url"> 126 <td jscontent="url">
126 </table> 127 </table>
127 <div class="detail" id="hosts-empty"></div> 128 <div class="detail" id="hosts-empty"></div>
128 </div> 129 </div>
129 </div> 130 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698