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

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

Issue 2804039: First cut at the tabbed content settings page. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: no change Created 10 years, 5 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 <div class="page hidden" id="contentSettingsPage">
2 <!-- Navigation tabs -->
3 <div id="content-settings-nav-tabs">
4 <span i18n-content="cookies_tab_label" id="cookies-nav-tab"
5 class="inactive-tab" tab-contents="cookiesFilterTab"></span>
6 <span i18n-content="images_tab_label" id="images-nav-tab"
7 class="inactive-tab" tab-contents="imagesFilterTab"></span>
8 </div>
9 <br>
10
11 <!-- Cookie filter tab contents -->
12 <div id="cookiesFilterTab" class="content-settings-tab-contents">
13 <section>
14 <span i18n-content="cookies_modify"></span>
15 <table class="option-control-table">
16 <tr>
17 <td class="option-name"><label>
18 <input type="radio" name="cookies" value="allow">
19 <span i18n-content="cookies_allow"></span>
20 </label></td>
21 </tr>
22 <tr>
23 <td class="option-name"><label>
24 <input type="radio" name="cookies" value="ask">
25 <span i18n-content="cookies_ask"></span>
26 </label></td>
27 </tr>
28 <tr>
29 <td class="option-name"><label>
30 <input type="radio" name="cookies" value="block">
31 <span i18n-content="cookies_block"></span>
32 </label></td>
33 </tr>
34 <tr>
35 <td class="option-name"><button id="cookies-exceptions-button"
36 i18n-content="content_exceptions"></button>
37 </td>
38 </tr>
39 </table>
40 </section>
41
42 <section>
43 <table class="option-control-table">
44 <tr>
45 <td class="option-name"><label>
46 <input id="block-third-party-cookies" type="checkbox">
47 <span i18n-content="cookies_block_3rd_party"></span>
48 </label></td>
49 </tr>
50 <tr>
51 <td class="option-name"><label>
52 <input id="clear-cookies-on-exit"
53 pref="profile.clear_site_data_on_exit" type="checkbox">
54 <span i18n-content="cookies_clear_on_exit"></span>
55 </label></td>
56 </tr>
57 <tr>
58 <td class="option-name"><button id="show-cookies-button"
59 i18n-content="cookies_show_cookies"></button>
60 </td>
61 </tr>
62 <tr>
63 <td class="option-name"><a i18n-values="href:flash_storage_url">
64 <span i18n-content="flash_storage_settings"></span></a>
65 </td>
66 </tr>
67 </table>
68 </section>
69 </div>
70
71 <!-- Image filter tab contents -->
72 <div id="imagesFilterTab" class="content-settings-tab-contents">
73 <section>
74 <span i18n-content="images_setting"></span>
75 <table class="option-control-table">
76 <tr>
77 <td class="option-name"><label>
78 <input type="radio" name="images" value="allow">
79 <span i18n-content="images_allow"></span>
80 </label></td>
81 </tr>
82 <tr>
83 <td class="option-name"><label>
84 <input type="radio" name="images" value="block">
85 <span i18n-content="images_block"></span>
86 </label></td>
87 </tr>
88 <tr>
89 <td class="option-name"><button id="images-exceptions-button"
90 i18n-content="content_exceptions"></button>
91 </td>
92 </tr>
93 </table>
94 </section>
95 </div>
96 </div>
OLDNEW
« no previous file with comments | « chrome/browser/resources/options.html ('k') | chrome/browser/resources/options/content_settings.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698