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

Side by Side Diff: chrome/browser/resources/print_preview/copies_settings.html

Issue 10108001: Refactor print preview web ui (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Whitespace Created 8 years, 7 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
(Empty)
1 <div id="copies-option" class="two-column visible">
2 <h1 i18n-content="copiesLabel"></h1>
3 <div class="right-column">
4 <div>
5 <input id="copies" type="text" value="1" maxlength="3">
6 <button id="increment"
7 i18n-values="title:incrementTitle;">+</button>
8 <button id="decrement"
9 i18n-values="title:decrementTitle;">–</button>
10 <div id="collate-option" class="checkbox" aria-live="polite" hidden>
11 <label>
12 <input id="collate" type="checkbox" checked>
13 <span i18n-content="optionCollate"></span>
14 </label>
15 </div>
16 </div>
17 <span id="copies-hint" class="hint"
18 i18n-content="copiesInstruction" aria-live="polite">
19 </span>
20 <div class="checkbox">
21 <label id="two-sided-option" aria-live="polite">
22 <input id="two-sided" type="checkbox">
23 <span i18n-content="optionTwoSided"></span>
24 </label>
25 </div>
26 </div>
27 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698