| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html i18n-values="dir:textdirection;"> | 2 <html i18n-values="dir:textdirection;"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title i18n-content="title"></title> | 5 <title i18n-content="title"></title> |
| 6 <link rel="icon" href="../../../app/theme/print_preview_favicon.png"> | 6 <link rel="icon" href="../../../app/theme/print_preview_favicon.png"> |
| 7 <link rel="stylesheet" href="../webui.css"> | 7 <link rel="stylesheet" href="../webui.css"> |
| 8 <link rel="stylesheet" href="print_preview.css"> | 8 <link rel="stylesheet" href="print_preview.css"> |
| 9 <script src="chrome://resources/js/local_strings.js"></script> | 9 <script src="chrome://resources/js/local_strings.js"></script> |
| 10 <script src="chrome://resources/js/cr.js"></script> | 10 <script src="chrome://resources/js/cr.js"></script> |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 <select id="printer-list"></select> | 30 <select id="printer-list"></select> |
| 31 </div> | 31 </div> |
| 32 <hr> | 32 <hr> |
| 33 <div class="two-column"> | 33 <div class="two-column"> |
| 34 <h1 i18n-content="pagesLabel"></h1> | 34 <h1 i18n-content="pagesLabel"></h1> |
| 35 <div> | 35 <div> |
| 36 <input id="all-pages" name="pages" checked type="radio"/> | 36 <input id="all-pages" name="pages" checked type="radio"/> |
| 37 <label for="all-pages" i18n-content="optionAllPages"></label> | 37 <label for="all-pages" i18n-content="optionAllPages"></label> |
| 38 </div> | 38 </div> |
| 39 <div> | 39 <div> |
| 40 <input id="print-pages" name="pages" type="radio" | 40 <div id="print-pages-div"> |
| 41 i18n-values="aria-label:printPagesLabel;"/> | 41 <input id="print-pages" name="pages" type="radio" |
| 42 <label for="print-pages"> | 42 i18n-values="aria-label:printPagesLabel;"/> |
| 43 <input id="individual-pages" type="text" | 43 <label for="print-pages"> |
| 44 i18n-values="placeholder:examplePageRangeText"/> | 44 <input id="individual-pages" type="text" |
| 45 </label> | 45 i18n-values="placeholder:examplePageRangeText"/> |
| 46 </label> |
| 47 </div> |
| 46 <span id="individual-pages-hint" class="hint" | 48 <span id="individual-pages-hint" class="hint" |
| 47 i18n-content="pageRangeInstruction" aria-hidden="true" | 49 i18n-content="pageRangeInstruction" aria-hidden="true" |
| 48 aria-live="polite"></span> | 50 aria-live="polite"></span> |
| 49 </div> | 51 </div> |
| 50 </div> | 52 </div> |
| 51 <hr id="hr-before-copies" class="invisible"> | 53 <hr id="hr-before-copies" class="invisible"> |
| 52 <div id="copies-option" class="two-column option visible"> | 54 <div id="copies-option" class="two-column option visible"> |
| 53 <h1 i18n-content="copiesLabel"></h1> | 55 <h1 i18n-content="copiesLabel"></h1> |
| 54 <div> | 56 <div> |
| 55 <div> | 57 <div> |
| (...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 <div id="error-text" class="hidden"></div> | 120 <div id="error-text" class="hidden"></div> |
| 119 <br> | 121 <br> |
| 120 <button id="error-button" class="hidden"></button> | 122 <button id="error-button" class="hidden"></button> |
| 121 </div> | 123 </div> |
| 122 </div> | 124 </div> |
| 123 </div> | 125 </div> |
| 124 <object id="dummy-viewer" type="application/pdf" | 126 <object id="dummy-viewer" type="application/pdf" |
| 125 src="chrome://print/dummy.pdf"/> | 127 src="chrome://print/dummy.pdf"/> |
| 126 </body> | 128 </body> |
| 127 </html> | 129 </html> |
| OLD | NEW |