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 1412523003: Adding <keygen> Content Setting (UI) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Using new Keygen icons. Created 4 years, 11 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 <div id="content-settings-page" class="page" hidden> 1 <div id="content-settings-page" class="page" hidden>
2 <div class="close-button"></div> 2 <div class="close-button"></div>
3 <h1 i18n-content="contentSettingsPage"></h1> 3 <h1 i18n-content="contentSettingsPage"></h1>
4 <div class="content-area"> 4 <div class="content-area">
5 <!-- Cookie filter tab contents --> 5 <!-- Cookie filter tab contents -->
6 <section> 6 <section>
7 <h3 i18n-content="cookiesTabLabel"></h3> 7 <h3 i18n-content="cookiesTabLabel"></h3>
8 <div> 8 <div>
9 <div class="radio controlled-setting-with-label"> 9 <div class="radio controlled-setting-with-label">
10 <label> 10 <label>
(...skipping 95 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 content-setting="javascript" value="block"></span> 106 content-setting="javascript" value="block"></span>
107 </span> 107 </span>
108 </label> 108 </label>
109 </div> 109 </div>
110 <div class="settings-row"> 110 <div class="settings-row">
111 <button class="exceptions-list-button" contentType="javascript" 111 <button class="exceptions-list-button" contentType="javascript"
112 i18n-content="manageExceptions"></button> 112 i18n-content="manageExceptions"></button>
113 </div> 113 </div>
114 </div> 114 </div>
115 </section> 115 </section>
116 <!-- Keygen filter -->
117 <section>
118 <h3 i18n-content="keygenTabLabel"></h3>
119 <div>
120 <div class="radio controlled-setting-with-label">
121 <label>
122 <input type="radio" name="keygen" value="allow">
123 <span>
124 <span i18n-content="keygenAllow"></span>
125 <span class="controlled-setting-indicator"
126 content-setting="keygen" value="allow"></span>
127 </span>
128 </label>
129 </div>
130 <div class="radio controlled-setting-with-label">
131 <label>
132 <input type="radio" name="keygen" value="block">
133 <span>
134 <span i18n-content="keygenBlock"></span>
135 <span class="controlled-setting-indicator"
136 content-setting="keygen" value="block"></span>
137 </span>
138 </label>
139 </div>
140 <div class="settings-row">
141 <button class="exceptions-list-button" contentType="keygen"
142 i18n-content="manageExceptions"></button>
143 </div>
144 </div>
145 </section>
116 <!-- Handlers settings --> 146 <!-- Handlers settings -->
117 <section id="handlers-section"> 147 <section id="handlers-section">
118 <h3 i18n-content="handlersTabLabel"></h3> 148 <h3 i18n-content="handlersTabLabel"></h3>
119 <div> 149 <div>
120 <div class="radio"> 150 <div class="radio">
121 <label> 151 <label>
122 <input type="radio" name="handlers" value="allow" 152 <input type="radio" name="handlers" value="allow"
123 class="handler-radio"> 153 class="handler-radio">
124 <span i18n-content="handlersAllow"></span> 154 <span i18n-content="handlersAllow"></span>
125 </label> 155 </label>
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
626 </section> 656 </section>
627 </div> 657 </div>
628 <div class="action-area"> 658 <div class="action-area">
629 <div class="button-strip"> 659 <div class="button-strip">
630 <button id="content-settings-overlay-confirm" class="default-button" 660 <button id="content-settings-overlay-confirm" class="default-button"
631 i18n-content="done"> 661 i18n-content="done">
632 </button> 662 </button>
633 </div> 663 </div>
634 </div> 664 </div>
635 </div> 665 </div>
OLDNEW
« no previous file with comments | « chrome/app/theme/theme_resources.grd ('k') | chrome/browser/resources/options/content_settings.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698