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

Unified Diff: chrome/browser/resources/options/font_settings.html

Issue 6672063: web-ui settings: Font setting fixes and improvements.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: more tweaks Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/options/font_settings.html
===================================================================
--- chrome/browser/resources/options/font_settings.html (revision 78298)
+++ chrome/browser/resources/options/font_settings.html (working copy)
@@ -21,6 +21,28 @@
<div id="standard-font-sample" class="font-sample-div"></div>
</section>
<section>
+ <h3 i18n-content="fontSettingsSerif"></h3>
+ <div class="font-input-div">
+ <div>
+ <select id="serif-font-family" class="font-input" dataType="string"
+ pref="webkit.webprefs.serif_font_family"
+ metric="Options_ChangeSerifFont" disabled></select>
+ </div>
+ </div>
+ <div id="serif-font-sample" class="font-sample-div"></div>
+ </section>
+ <section>
+ <h3 i18n-content="fontSettingsSansSerif"></h3>
+ <div class="font-input-div">
+ <div>
+ <select id="sans-serif-font-family" class="font-input" dataType="string"
+ pref="webkit.webprefs.sans_serif_font_family"
+ metric="Options_ChangeSansSerifFont" disabled></select>
+ </div>
+ </div>
+ <div id="sans-serif-font-sample" class="font-sample-div"></div>
+ </section>
+ <section>
<h3 i18n-content="fontSettingsFixedWidth"></h3>
<div class="font-input-div">
<div>
@@ -28,15 +50,6 @@
pref="webkit.webprefs.fixed_font_family"
metric="Options_ChangeFixedFont" disabled></select>
</div>
- <div>
- <input id="fixed-font-size" type="range" min="0" max="24"
- pref="webkit.webprefs.default_fixed_font_size">
- <div>
- <span i18n-content="fontSettingsSizeTiny"></span>
- <span i18n-content="fontSettingsSizeHuge" class="font-settings-huge">
- </span>
- </div>
- </div>
</div>
<div id="fixed-font-sample" class="font-sample-div"></div>
</section>

Powered by Google App Engine
This is Rietveld 408576698