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

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

Issue 8918013: PrintPreview: Check the collate checkbox by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <div id="copies-option" class="two-column visible"> 1 <div id="copies-option" class="two-column visible">
2 <h1 i18n-content="copiesLabel"></h1> 2 <h1 i18n-content="copiesLabel"></h1>
3 <div class="right-column"> 3 <div class="right-column">
4 <div> 4 <div>
5 <input id="copies" type="text" value="1" maxlength="3"> 5 <input id="copies" type="text" value="1" maxlength="3">
6 <button id="increment" 6 <button id="increment"
7 i18n-values="title:incrementTitle;">+</button> 7 i18n-values="title:incrementTitle;">+</button>
8 <button id="decrement" 8 <button id="decrement"
9 i18n-values="title:decrementTitle;">–</button> 9 i18n-values="title:decrementTitle;">–</button>
10 <label id="collate-option" aria-live="polite" hidden> 10 <label id="collate-option" aria-live="polite" hidden>
11 <input id="collate" type="checkbox"> 11 <input id="collate" type="checkbox" checked>
12 <span i18n-content="optionCollate"></span> 12 <span i18n-content="optionCollate"></span>
13 </label> 13 </label>
14 </div> 14 </div>
15 <span id="copies-hint" class="hint" 15 <span id="copies-hint" class="hint"
16 i18n-content="copiesInstruction" aria-live="polite"> 16 i18n-content="copiesInstruction" aria-live="polite">
17 </span> 17 </span>
18 <label id="two-sided-option" aria-live="polite"> 18 <label id="two-sided-option" aria-live="polite">
19 <input id="two-sided" type="checkbox"> 19 <input id="two-sided" type="checkbox">
20 <span i18n-content="optionTwoSided"></span> 20 <span i18n-content="optionTwoSided"></span>
21 </label> 21 </label>
22 </div> 22 </div>
23 </div> 23 </div>
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698