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

Unified Diff: chrome/browser/resources/print_preview/settings/color_settings.html

Issue 535073005: Convert Print Preview layout and color radio buttons to select elements. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Adapt browser_tests to the controls change. Created 6 years, 3 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/print_preview/settings/color_settings.html
diff --git a/chrome/browser/resources/print_preview/settings/color_settings.html b/chrome/browser/resources/print_preview/settings/color_settings.html
index 40b1805555785512ef89af0f0e373833f6bb01ec..c04facdc58ba2d9823adc67a78e9df624bcf8cc3 100644
--- a/chrome/browser/resources/print_preview/settings/color_settings.html
+++ b/chrome/browser/resources/print_preview/settings/color_settings.html
@@ -4,13 +4,9 @@
hidden>
<h1 i18n-content="optionColor"></h1>
<div class="right-column">
- <div class="radio"><label>
- <input class="color-option" type="radio" name="color">
- <span i18n-content="optionColor"></span>
- </label></div>
- <div class="radio"><label>
- <input class="bw-option" type="radio" name="color" checked>
- <span i18n-content="optionBw"></span>
- </label></div>
+ <select class="color-settings-select">
+ <option i18n-content="optionBw" value="bw" selected></option>
+ <option i18n-content="optionColor" value="color"></option>
+ </select>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698