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

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

Issue 8549011: Content settings UI for mouse lock (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Strings from Brian used Created 9 years, 1 month 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 201 matching lines...) Expand 10 before | Expand all | Expand 10 after
212 </div> 212 </div>
213 </section> 213 </section>
214 <!-- Fullscreen filter --> 214 <!-- Fullscreen filter -->
215 <section> 215 <section>
216 <h3 i18n-content="fullscreen_tab_label"></h3> 216 <h3 i18n-content="fullscreen_tab_label"></h3>
217 <div> 217 <div>
218 <button class="exceptions-list-button" contentType="fullscreen" 218 <button class="exceptions-list-button" contentType="fullscreen"
219 i18n-content="manage_exceptions"></button> 219 i18n-content="manage_exceptions"></button>
220 </div> 220 </div>
221 </section> 221 </section>
222 <!-- Mouse Lock filter -->
223 <section>
224 <h3 i18n-content="mouselock_tab_label"></h3>
225 <div>
226 <div class="radio">
227 <label>
228 <input type="radio" name="mouselock" value="allow">
229 <span i18n-content="mouselock_allow"></span>
230 </label>
231 </div>
232 <div class="radio">
233 <label>
234 <input type="radio" name="mouselock" value="ask">
235 <span i18n-content="mouselock_ask"></span>
236 </label>
237 </div>
238 <div class="radio">
239 <label>
240 <input type="radio" name="mouselock" value="block">
241 <span i18n-content="mouselock_block"></span>
242 </label>
243 </div>
244 <button class="exceptions-list-button" contentType="mouselock"
245 i18n-content="manage_exceptions"></button>
246 </div>
247 </section>
222 <!-- Intent registration filter tab contents --> 248 <!-- Intent registration filter tab contents -->
223 <if expr="pp_ifdef('enable_web_intents')"> 249 <if expr="pp_ifdef('enable_web_intents')">
224 <section id="intents-section"> 250 <section id="intents-section">
225 <h3 i18n-content="intentsTabLabel" class="content-settings-header"></h3> 251 <h3 i18n-content="intentsTabLabel" class="content-settings-header"></h3>
226 <div> 252 <div>
227 <div class="radio"> 253 <div class="radio">
228 <label> 254 <label>
229 <input type="radio" name="intents" value="allow"> 255 <input type="radio" name="intents" value="allow">
230 <span i18n-content="intentsAllow"></span> 256 <span i18n-content="intentsAllow"></span>
231 </label> 257 </label>
(...skipping 12 matching lines...) Expand all
244 </div> 270 </div>
245 <button class="exceptions-list-button" contentType="intents" 271 <button class="exceptions-list-button" contentType="intents"
246 i18n-content="manage_exceptions"></button> 272 i18n-content="manage_exceptions"></button>
247 <button id="manage-intents-button" contentType="intents" 273 <button id="manage-intents-button" contentType="intents"
248 i18n-content="manageIntents"></button> 274 i18n-content="manageIntents"></button>
249 </div> 275 </div>
250 </section> 276 </section>
251 </if> 277 </if>
252 </div> 278 </div>
253 </div> 279 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698