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

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

Issue 5699004: [tabbed options] more work on content settings exceptions lists (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix maybeSetPatternValid Created 10 years 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 class="page hidden" id="contentSettingsPage"> 1 <div class="page hidden" id="contentSettingsPage">
2 <h1 i18n-content="contentSettingsPage"></h1> 2 <h1 i18n-content="contentSettingsPage"></h1>
3 <!-- Cookie filter tab contents --> 3 <!-- Cookie filter tab contents -->
4 <section> 4 <section>
5 <h3 i18n-content="cookies_tab_label"></h3> 5 <h3 i18n-content="cookies_tab_label"></h3>
6 <div> 6 <div>
7 <label class="radio"> 7 <label class="radio">
8 <input type="radio" name="cookies" value="allow"> 8 <input type="radio" name="cookies" value="allow">
9 <span i18n-content="cookies_allow"></span> 9 <span i18n-content="cookies_allow"></span>
10 </label> 10 </label>
(...skipping 12 matching lines...) Expand all
23 pref="profile.clear_site_data_on_exit" type="checkbox"> 23 pref="profile.clear_site_data_on_exit" type="checkbox">
24 <span i18n-content="cookies_clear_on_exit"></span> 24 <span i18n-content="cookies_clear_on_exit"></span>
25 </label> 25 </label>
26 <button id="show-cookies-button" 26 <button id="show-cookies-button"
27 i18n-content="cookies_show_cookies"></button> 27 i18n-content="cookies_show_cookies"></button>
28 <a i18n-values="href:flash_storage_url" 28 <a i18n-values="href:flash_storage_url"
29 i18n-content="flash_storage_settings" target="_blank"></a> 29 i18n-content="flash_storage_settings" target="_blank"></a>
30 30
31 <!-- TODO(estade): put this in a sub-sub-page. --> 31 <!-- TODO(estade): put this in a sub-sub-page. -->
32 <div contentType="cookies"> 32 <div contentType="cookies">
33 <list mode="normal"></list> 33 <list mode="normal" id="evan"></list>
stuartmorgan 2010/12/13 17:49:51 I'm guessing this isn't supposed to be here.
Evan Stade 2010/12/13 20:00:19 that is accurate
34 <div> 34 <div>
35 <span i18n-content="otr_exceptions_explanation"></span> 35 <span i18n-content="otr_exceptions_explanation"></span>
36 <list mode="otr"></list> 36 <list mode="otr"></list>
37 </div> 37 </div>
38 </div> 38 </div>
39 </div> 39 </div>
40 </section> 40 </section>
41 41
42 <!-- Image filter --> 42 <!-- Image filter -->
43 <section> 43 <section>
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 <span i18n-content="notifications_block"></span> 182 <span i18n-content="notifications_block"></span>
183 </label> 183 </label>
184 184
185 <!-- TODO(estade): put this in a sub-sub-page. --> 185 <!-- TODO(estade): put this in a sub-sub-page. -->
186 <div contentType="notifications"> 186 <div contentType="notifications">
187 <list mode="normal"></list> 187 <list mode="normal"></list>
188 </div> 188 </div>
189 </div> 189 </div>
190 </section> 190 </section>
191 </div> 191 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698