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

Side by Side Diff: chrome/browser/resources/options/content_settings.html

Issue 7624012: First pass on intents options UI. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Add comments, fix CSS, etc. Created 9 years, 4 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 | Annotate | Revision Log
OLDNEW
1 <div id="content-settings-page" class="page" hidden> 1 <div id="content-settings-page" class="page" hidden>
2 <h1 i18n-content="contentSettingsPage"></h1> 2 <h1 i18n-content="contentSettingsPage"></h1>
3 <div class="displaytable"> 3 <div class="displaytable">
4 <!-- Cookie filter tab contents --> 4 <!-- Cookie filter tab contents -->
5 <section> 5 <section>
6 <h3 i18n-content="cookies_tab_label"></h3> 6 <h3 i18n-content="cookies_tab_label"></h3>
7 <div> 7 <div>
8 <div class="radio"> 8 <div class="radio">
9 <label> 9 <label>
10 <input type="radio" name="cookies" value="allow"> 10 <input type="radio" name="cookies" value="allow">
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 <div class="radio"> 230 <div class="radio">
231 <label> 231 <label>
232 <input type="radio" name="intents" value="block"> 232 <input type="radio" name="intents" value="block">
233 <span i18n-content="intentsBlock"></span> 233 <span i18n-content="intentsBlock"></span>
234 </label> 234 </label>
235 </div> 235 </div>
236 <button class="exceptions-list-button" contentType="intents" 236 <button class="exceptions-list-button" contentType="intents"
237 i18n-content="manage_exceptions"></button> 237 i18n-content="manage_exceptions"></button>
238 </div> 238 </div>
239 </section> 239 </section>
240 <if expr="pp_ifdef('enable_web_intents')">
241 <section id="intents-section">
242 <h3 i18n-content="intentsTabLabel"></h3>
243 <div>
244 <div class="radio">
245 <label>
246 <input type="radio" name="intents" value="allow"
247 class="intents-radio">
248 <span i18n-content="intentsAllow"></span>
249 </label>
250 </div>
251 <div class="radio">
252 <label>
253 <input type="radio" name="intents" value="block"
254 class="intents-radio">
255 <span i18n-content="intentsBlock"></span>
256 </label>
257 </div>
258 <button id="manage-intents-button" contentType="intents"
259 i18n-content="manageIntents"></button>
260 </div>
261 </section>
262 </if>
240 </div> 263 </div>
241 </div> 264 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698