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

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

Issue 7051040: Print Preview: Making the UI not block when preview is generated (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Updating isCollated(), adding TODO comments. Created 9 years, 7 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
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>
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 </div> 50 </div>
51 <hr class="invisible"> 51 <hr class="invisible">
52 <div class="two-column"> 52 <div class="two-column">
53 <h1 i18n-content="copiesLabel"></h1> 53 <h1 i18n-content="copiesLabel"></h1>
54 <div> 54 <div>
55 <div> 55 <div>
56 <input id="copies" type="text" name="copies" value="1" min="1" 56 <input id="copies" type="text" name="copies" value="1" min="1"
57 max="999" maxlength="3" class="number small"/> 57 max="999" maxlength="3" class="number small"/>
58 <button id="increment">+</button> 58 <button id="increment">+</button>
59 <button id="decrement">–</button> 59 <button id="decrement">–</button>
60 <span id="collate-option" hidden> 60 <span id="collate-option" class="hidden">
61 <input id="collate" name="collate" type="checkbox" /> 61 <input id="collate" name="collate" type="checkbox" />
62 <label for="collate" i18n-content="optionCollate"></label> 62 <label for="collate" i18n-content="optionCollate"></label>
63 </span> 63 </span>
64 </div> 64 </div>
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>
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698