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

Side by Side Diff: chrome/browser/resources/print_preview/settings/other_options_settings.html

Issue 11818062: Adds option to enable CSS backgrounds for printing. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Merge with trunk. Created 7 years, 11 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
OLDNEW
1 <div id="other-options-settings" 1 <div id="other-options-settings"
2 class="other-options-settings two-column visible"> 2 class="other-options-settings two-column visible">
3 <h1 i18n-content="optionsLabel"></h1> 3 <h1 i18n-content="optionsLabel"></h1>
4 <div class="right-column checkbox"> 4 <div class="right-column checkbox">
5 <div class="header-footer-container checkbox"> 5 <div class="header-footer-container checkbox">
6 <label aria-live="polite"> 6 <label aria-live="polite">
7 <input class="header-footer-checkbox" type="checkbox"> 7 <input class="header-footer-checkbox" type="checkbox">
8 <span i18n-content="optionHeaderFooter"></span> 8 <span i18n-content="optionHeaderFooter"></span>
9 </label> 9 </label>
10 </div> 10 </div>
11 <div class="fit-to-page-container checkbox"> 11 <div class="fit-to-page-container checkbox">
12 <label aria-live="polite"> 12 <label aria-live="polite">
13 <input class="fit-to-page-checkbox" type="checkbox"> 13 <input class="fit-to-page-checkbox" type="checkbox">
14 <span i18n-content="optionFitToPage"></span> 14 <span i18n-content="optionFitToPage"></span>
15 </label> 15 </label>
16 </div> 16 </div>
17 <div class="duplex-container checkbox"> 17 <div class="duplex-container checkbox">
18 <label aria-live="polite"> 18 <label aria-live="polite">
19 <input class="duplex-checkbox" type="checkbox"> 19 <input class="duplex-checkbox" type="checkbox">
20 <span i18n-content="optionTwoSided"></span> 20 <span i18n-content="optionTwoSided"></span>
21 </label> 21 </label>
22 </div> 22 </div>
23 <div class="css-background-container checkbox">
24 <label aria-live="polite">
25 <input class="css-background-checkbox" type="checkbox">
26 <span i18n-content="optionBackgroundColorsAndImages"></span>
27 </label>
28 </div>
23 </div> 29 </div>
24 </div> 30 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698