| 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/util.js"></script> | 10 <script src="chrome://resources/js/util.js"></script> |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 <span id="copies-hint" class="hint invalid" | 65 <span id="copies-hint" class="hint invalid" |
| 66 i18n-content="copiesInstruction"></span> | 66 i18n-content="copiesInstruction"></span> |
| 67 <div id="two-sided-div"> | 67 <div id="two-sided-div"> |
| 68 <input id="two-sided" name="two-sided" type="checkbox"/> | 68 <input id="two-sided" name="two-sided" type="checkbox"/> |
| 69 <label for="two-sided" i18n-content="optionTwoSided"></label> | 69 <label for="two-sided" i18n-content="optionTwoSided"></label> |
| 70 </div> | 70 </div> |
| 71 </div> | 71 </div> |
| 72 </div> | 72 </div> |
| 73 </div> | 73 </div> |
| 74 <hr> | 74 <hr> |
| 75 <div class="two-column"> | 75 <div id="landscape-option" class="two-column option visible"> |
| 76 <h1 i18n-content="layoutLabel"></h1> | 76 <h1 i18n-content="layoutLabel"></h1> |
| 77 <div> | 77 <div> |
| 78 <div> | 78 <div> |
| 79 <input id="portrait" type="radio" name="layout" checked | 79 <input id="portrait" type="radio" name="layout" checked |
| 80 label="portrait-label"/> | 80 label="portrait-label"/> |
| 81 <label id="portrait-label" for="portrait" | 81 <label id="portrait-label" for="portrait" |
| 82 i18n-content="optionPortrait"></label> | 82 i18n-content="optionPortrait"></label> |
| 83 </div> | 83 </div> |
| 84 <div> | 84 <div> |
| 85 <input id="landscape" type="radio" name="layout" | 85 <input id="landscape" type="radio" name="layout" |
| 86 label="landscape-label"/> | 86 label="landscape-label"/> |
| 87 <label id="landscape-label" for="landscape" | 87 <label id="landscape-label" for="landscape" |
| 88 i18n-content="optionLandscape"></label> | 88 i18n-content="optionLandscape"></label> |
| 89 </div> | 89 </div> |
| 90 </div> | 90 </div> |
| 91 </div> | 91 </div> |
| 92 <hr> | 92 <hr> |
| 93 <div id="color-options" class="two-column hidden"> | 93 <div id="color-options" class="two-column option"> |
| 94 <h1 i18n-content="optionColor"></h1> | 94 <h1 i18n-content="optionColor"></h1> |
| 95 <div> | 95 <div> |
| 96 <div> | 96 <div> |
| 97 <input id="color" type="radio" name="color" label="color-label"/> | 97 <input id="color" type="radio" name="color" label="color-label"/> |
| 98 <label id="color-label" for="color" | 98 <label id="color-label" for="color" |
| 99 i18n-content="optionColor"></label> | 99 i18n-content="optionColor"></label> |
| 100 </div> | 100 </div> |
| 101 <div> | 101 <div> |
| 102 <input id="bw" type="radio" name="color" checked | 102 <input id="bw" type="radio" name="color" checked |
| 103 label="bw-label"/> | 103 label="bw-label"/> |
| (...skipping 20 matching lines...) Expand all Loading... |
| 124 <br> | 124 <br> |
| 125 <button id="reopen-page" class="hidden" | 125 <button id="reopen-page" class="hidden" |
| 126 i18n-content="reopenPage"></button> | 126 i18n-content="reopenPage"></button> |
| 127 </div> | 127 </div> |
| 128 </div> | 128 </div> |
| 129 </div> | 129 </div> |
| 130 <object id="dummy-viewer" type="application/pdf" | 130 <object id="dummy-viewer" type="application/pdf" |
| 131 src="chrome://print/dummy.pdf"/> | 131 src="chrome://print/dummy.pdf"/> |
| 132 </body> | 132 </body> |
| 133 </html> | 133 </html> |
| OLD | NEW |