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

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

Issue 1125343004: Add a "Simplify Page" option to the print preview dialog (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for the failing tests Created 5 years, 4 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" hidden> 2 class="other-options-settings two-column" hidden>
3 <div class="left-column"> 3 <div class="left-column">
4 <h1 i18n-content="optionsLabel"></h1> 4 <h1 i18n-content="optionsLabel"></h1>
5 </div> 5 </div>
6 <div class="right-column checkbox"> 6 <div class="right-column checkbox">
7 <div id="other-options-collapsible" class="collapsible"> 7 <div id="other-options-collapsible" class="collapsible">
8 <div class="distill-page-container checkbox">
9 <label aria-live="polite">
10 <input class="distill-page-checkbox" type="checkbox">
11 <span i18n-content="optionDistillPage"></span>
12 </label>
13 </div>
8 <div class="header-footer-container checkbox"> 14 <div class="header-footer-container checkbox">
9 <label aria-live="polite"> 15 <label aria-live="polite">
10 <input class="header-footer-checkbox" type="checkbox"> 16 <input class="header-footer-checkbox" type="checkbox">
11 <span i18n-content="optionHeaderFooter"></span> 17 <span i18n-content="optionHeaderFooter"></span>
12 </label> 18 </label>
13 </div> 19 </div>
14 <div class="fit-to-page-container checkbox"> 20 <div class="fit-to-page-container checkbox">
15 <label aria-live="polite"> 21 <label aria-live="polite">
16 <input class="fit-to-page-checkbox" type="checkbox"> 22 <input class="fit-to-page-checkbox" type="checkbox">
17 <span i18n-content="optionFitToPage"></span> 23 <span i18n-content="optionFitToPage"></span>
(...skipping 13 matching lines...) Expand all
31 </div> 37 </div>
32 <div class="selection-only-container checkbox"> 38 <div class="selection-only-container checkbox">
33 <label aria-live="polite"> 39 <label aria-live="polite">
34 <input class="selection-only-checkbox" type="checkbox"> 40 <input class="selection-only-checkbox" type="checkbox">
35 <span i18n-content="optionSelectionOnly"></span> 41 <span i18n-content="optionSelectionOnly"></span>
36 </label> 42 </label>
37 </div> 43 </div>
38 </div> 44 </div>
39 </div> 45 </div>
40 </div> 46 </div>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698