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

Unified Diff: chrome/browser/resources/print_preview/settings/layout_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/layout_settings.html
diff --git a/chrome/browser/resources/print_preview/settings/layout_settings.html b/chrome/browser/resources/print_preview/settings/layout_settings.html
index 9e7038534ec7eda274dd7c356ff466ee6651fa2b..7ff05f5ed307b4cda368ea8f4fc662215d51a753 100644
--- a/chrome/browser/resources/print_preview/settings/layout_settings.html
+++ b/chrome/browser/resources/print_preview/settings/layout_settings.html
@@ -1,18 +1,9 @@
<div id="layout-settings" class="two-column layout-settings" hidden>
<h1 i18n-content="layoutLabel"></h1>
<div class="right-column">
- <div class="radio"><label>
- <input class="layout-settings-portrait-radio"
- type="radio"
- name="layout"
- checked>
- <span i18n-content="optionPortrait"></span>
- </label></div>
- <div class="radio"><label>
- <input class="layout-settings-landscape-radio"
- type="radio"
- name="layout">
- <span i18n-content="optionLandscape"></span>
- </label></div>
+ <select class="layout-settings-select">
+ <option i18n-content="optionPortrait" value="portrait" selected></option>
+ <option i18n-content="optionLandscape" value="landscape"></option>
+ </select>
</div>
</div>

Powered by Google App Engine
This is Rietveld 408576698