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

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

Issue 7003153: Print Preview: Refactoring/Cleaning up print_preview.js. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing comments Created 9 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/resources/print_preview.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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>
11 <script src="print_preview.js"></script> 11 <script src="print_preview.js"></script>
12 <script src="print_preview_animations.js"></script> 12 <script src="print_preview_animations.js"></script>
13 <script src="print_preview_utils.js"></script>
13 </head> 14 </head>
14 <body> 15 <body>
15 <div class="sidebar"> 16 <div class="sidebar">
16 <header> 17 <header>
17 <h1 i18n-content="title"></h1> 18 <h1 i18n-content="title"></h1>
18 <div id="print-header"> 19 <div id="print-header">
19 <span id="print-summary"></span> 20 <span id="print-summary"></span>
20 <button id="print-button" i18n-content="printButton" class="default" 21 <button id="print-button" i18n-content="printButton" class="default"
21 autofocus></button> 22 autofocus></button>
22 <button id="cancel-button" i18n-content="cancelButton"></button> 23 <button id="cancel-button" i18n-content="cancelButton"></button>
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 <div id="error-text" class="hidden"></div> 121 <div id="error-text" class="hidden"></div>
121 <br> 122 <br>
122 <button id="error-button" class="hidden"></button> 123 <button id="error-button" class="hidden"></button>
123 </div> 124 </div>
124 </div> 125 </div>
125 </div> 126 </div>
126 <object id="dummy-viewer" type="application/pdf" 127 <object id="dummy-viewer" type="application/pdf"
127 src="chrome://print/dummy.pdf"/> 128 src="chrome://print/dummy.pdf"/>
128 </body> 129 </body>
129 </html> 130 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/print_preview.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698