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

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

Issue 197523002: Show Zoom Levels as content settings (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 9 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 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="cookies_tab_label"></h3> 7 <h3 i18n-content="cookies_tab_label"></h3>
8 <div> 8 <div>
9 <div class="radio"> 9 <div class="radio">
10 <span class="controlled-setting-with-label"> 10 <span class="controlled-setting-with-label">
(...skipping 574 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 <input type="radio" name="midi-sysex" value="block"> 585 <input type="radio" name="midi-sysex" value="block">
586 <span i18n-content="midiSysExBlock"></span> 586 <span i18n-content="midiSysExBlock"></span>
587 </label> 587 </label>
588 </div> 588 </div>
589 <div class="settings-row"> 589 <div class="settings-row">
590 <button class="exceptions-list-button" contentType="midi-sysex" 590 <button class="exceptions-list-button" contentType="midi-sysex"
591 i18n-content="manageExceptions"></button> 591 i18n-content="manageExceptions"></button>
592 </div> 592 </div>
593 </div> 593 </div>
594 </section> 594 </section>
595 <!-- Page zoom levels -->
596 <section id="page-zoom-levels">
597 <h3 i18n-content="zoomlevels_header"></h3>
598 <div>
599 <div class="settings-row">
600 <button class="exceptions-list-button" contentType="zoomlevels"
601 i18n-content="zoomLevelsManage"></button>
602 </div>
603 </div>
604 </section>
595 </div> 605 </div>
596 <div class="action-area"> 606 <div class="action-area">
597 <div class="button-strip"> 607 <div class="button-strip">
598 <button id="content-settings-overlay-confirm" class="default-button" 608 <button id="content-settings-overlay-confirm" class="default-button"
599 i18n-content="done"> 609 i18n-content="done">
600 </button> 610 </button>
601 </div> 611 </div>
602 </div> 612 </div>
603 </div> 613 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698