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

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

Issue 3299020: Remove vestigial cookie/web app permissions prompting UI now that the async U... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 3 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 class="page hidden" id="contentSettingsPage"> 1 <div class="page hidden" id="contentSettingsPage">
2 <h1> 2 <h1>
3 <span i18n-content="advancedPage"></span> 3 <span i18n-content="advancedPage"></span>
4 &gt; 4 &gt;
5 <span i18n-content="contentSettingsPage"></span> 5 <span i18n-content="contentSettingsPage"></span>
6 </h1> 6 </h1>
7 7
8 <!-- Navigation tabs --> 8 <!-- Navigation tabs -->
9 <div class="subpages-nav-tabs"> 9 <div class="subpages-nav-tabs">
10 <span i18n-content="cookies_tab_label" id="cookies-nav-tab" 10 <span i18n-content="cookies_tab_label" id="cookies-nav-tab"
(...skipping 17 matching lines...) Expand all
28 <div id="cookiesFilterTab" class="subpages-tab-contents"> 28 <div id="cookiesFilterTab" class="subpages-tab-contents">
29 <h4 i18n-content="cookies_modify" class="contentSettingsHeader"></h4> 29 <h4 i18n-content="cookies_modify" class="contentSettingsHeader"></h4>
30 <table class="option-control-table"> 30 <table class="option-control-table">
31 <tr> 31 <tr>
32 <td class="option-name"><label> 32 <td class="option-name"><label>
33 <input type="radio" name="cookies" value="allow"> 33 <input type="radio" name="cookies" value="allow">
34 <span i18n-content="cookies_allow"></span> 34 <span i18n-content="cookies_allow"></span>
35 </label></td> 35 </label></td>
36 </tr> 36 </tr>
37 <tr> 37 <tr>
38 <td class="option-name" id='cookiesAskRadio'><label>
39 <input type="radio" name="cookies" value="ask">
40 <span i18n-content="cookies_ask"></span>
41 </label></td>
42 </tr>
43 <tr>
44 <td class="option-name"><label> 38 <td class="option-name"><label>
45 <input type="radio" name="cookies" value="block"> 39 <input type="radio" name="cookies" value="block">
46 <span i18n-content="cookies_block"></span> 40 <span i18n-content="cookies_block"></span>
47 </label></td> 41 </label></td>
48 </tr> 42 </tr>
49 </table> 43 </table>
50 44
51 <div class="exceptionsLink" i18n-content="content_exceptions"></div> 45 <div class="exceptionsLink" i18n-content="content_exceptions"></div>
52 <div id="cookiesExceptionsArea" contentType="cookies"> 46 <div id="cookiesExceptionsArea" contentType="cookies">
53 <list id="cookiesExceptionsList"></list> 47 <list id="cookiesExceptionsList"></list>
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 </label></td> 231 </label></td>
238 </tr> 232 </tr>
239 </table> 233 </table>
240 234
241 <div class="exceptionsLink" i18n-content="content_exceptions"></div> 235 <div class="exceptionsLink" i18n-content="content_exceptions"></div>
242 <div id="notificationsExceptionsArea" contentType="notifications"> 236 <div id="notificationsExceptionsArea" contentType="notifications">
243 <list id="notificationsExceptionsList"></list> 237 <list id="notificationsExceptionsList"></list>
244 </div> 238 </div>
245 </div> 239 </div>
246 </div> 240 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698