| 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 <include src="../content_security_policy.html"/> | 5 <include src="../content_security_policy.html"/> |
| 6 <title i18n-content="title"></title> | 6 <title i18n-content="title"></title> |
| 7 <link rel="icon" href="../../../app/theme/print_preview_favicon.png"> | 7 <link rel="icon" href="../../../app/theme/print_preview_favicon.png"> |
| 8 <link rel="stylesheet" href="../webui.css"> | 8 <link rel="stylesheet" href="../webui.css"> |
| 9 <link rel="stylesheet" href="chrome://resources/css/throbber.css"> | 9 <link rel="stylesheet" href="chrome://resources/css/throbber.css"> |
| 10 <link rel="stylesheet" href="print_preview.css"> | 10 <link rel="stylesheet" href="print_preview.css"> |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 <button id="system-dialog-link" class="link-button" | 49 <button id="system-dialog-link" class="link-button" |
| 50 i18n-content="systemDialogOption"></button> | 50 i18n-content="systemDialogOption"></button> |
| 51 <!-- TODO(dpapad): Investigate whey hidden attribute does not work. --> | 51 <!-- TODO(dpapad): Investigate whey hidden attribute does not work. --> |
| 52 <div id="system-dialog-throbber" class="throbber hidden"></div> | 52 <div id="system-dialog-throbber" class="throbber hidden"></div> |
| 53 </div> | 53 </div> |
| 54 </div> | 54 </div> |
| 55 </div> | 55 </div> |
| 56 <div id="mainview"> | 56 <div id="mainview"> |
| 57 <div id="overlay-layer" class="invisible"> | 57 <div id="overlay-layer" class="invisible"> |
| 58 <div id="messages"> | 58 <div id="messages"> |
| 59 <div id="dancing-dots-text" class="hidden"> | 59 <div id="dancing-dots-text" hidden> |
| 60 <span id="loading" i18n-content="loading"></span> | 60 <span id="loading"></span> |
| 61 <span><span>.</span><span>.</span><span>.</span></span> | 61 <span><span>.</span><span>.</span><span>.</span></span> |
| 62 </div> | 62 </div> |
| 63 <div id="error-text" class="hidden"></div> | 63 <div id="custom-message" hidden></div> |
| 64 <div id="custom-message-with-dots" |
| 65 class="message-with-dots" hidden></div> |
| 64 <div id="error-action-area"> | 66 <div id="error-action-area"> |
| 65 <button id="error-button" class="hidden"></button> | 67 <button id="error-button" class="hidden"></button> |
| 66 <div id="native-print-dialog-throbber" class="throbber hidden"></div> | 68 <div id="native-print-dialog-throbber" class="throbber hidden"></div> |
| 67 </div> | 69 </div> |
| 68 </div> | 70 </div> |
| 69 </div> | 71 </div> |
| 70 </div> | 72 </div> |
| 71 <object id="dummy-viewer" | 73 <object id="dummy-viewer" |
| 72 type="application/x-google-chrome-print-preview-pdf" | 74 type="application/x-google-chrome-print-preview-pdf" |
| 73 data="chrome://print/dummy.pdf"></object> | 75 data="chrome://print/dummy.pdf"></object> |
| 74 <script src="chrome://resources/js/i18n_template.js"></script> | 76 <script src="chrome://resources/js/i18n_template.js"></script> |
| 75 <script src="chrome://resources/js/i18n_process.js"></script> | 77 <script src="chrome://resources/js/i18n_process.js"></script> |
| 76 </body> | 78 </body> |
| 77 </html> | 79 </html> |
| OLD | NEW |