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

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

Issue 7348010: Added Header and Footer support using Skia (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Indent Fix Created 9 years, 5 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="chrome://resources/css/throbber.css"> 8 <link rel="stylesheet" href="chrome://resources/css/throbber.css">
9 <link rel="stylesheet" href="print_preview.css"> 9 <link rel="stylesheet" href="print_preview.css">
10 <script src="chrome://resources/js/local_strings.js"></script> 10 <script src="chrome://resources/js/local_strings.js"></script>
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 <input id="color" type="radio" name="color"/> 60 <input id="color" type="radio" name="color"/>
61 <label for="color" i18n-content="optionColor"></label> 61 <label for="color" i18n-content="optionColor"></label>
62 </div> 62 </div>
63 <div> 63 <div>
64 <input id="bw" type="radio" name="color" checked/> 64 <input id="bw" type="radio" name="color" checked/>
65 <label for="bw" i18n-content="optionBw"></label> 65 <label for="bw" i18n-content="optionBw"></label>
66 </div> 66 </div>
67 </div> 67 </div>
68 </div> 68 </div>
69 <hr> 69 <hr>
70 <div class="two-column option visible">
kmadhusu 2011/07/14 01:50:15 dpapad is refactoring the UI code (print_preview.h
dpapad 2011/07/14 15:59:35 Are we planning to add more options in this catego
Aayush Kumar 2011/07/19 01:20:30 Based on our conversation, we'll let this be as it
71 <h1 i18n-content="optionsLabel"></h1>
72 <div>
73 <input id="header-footer" type="checkbox" checked/>
74 <label for="header-footer" i18n-content="optionHeaderFooter">
75 </label>
76 </div>
77 </div>
78 <hr>
70 <div id="system-dialog-div"> 79 <div id="system-dialog-div">
71 <button id="system-dialog-link" class="link-button" 80 <button id="system-dialog-link" class="link-button"
72 i18n-content="systemDialogOption"></button> 81 i18n-content="systemDialogOption"></button>
73 <!-- TODO(dpapad): Investigate whey hidden attribute does not work. --> 82 <!-- TODO(dpapad): Investigate whey hidden attribute does not work. -->
74 <div id="system-dialog-throbber" class="throbber hidden"></div> 83 <div id="system-dialog-throbber" class="throbber hidden"></div>
75 </div> 84 </div>
76 </div> 85 </div>
77 </div> 86 </div>
78 <div id="mainview"> 87 <div id="mainview">
79 <div id="overlay-layer" class="invisible"> 88 <div id="overlay-layer" class="invisible">
80 <div id="messages"> 89 <div id="messages">
81 <div id="dancing-dots-text" class="hidden"> 90 <div id="dancing-dots-text" class="hidden">
82 <span id="loading" i18n-content="loading"></span> 91 <span id="loading" i18n-content="loading"></span>
83 <span><span>.</span><span>.</span><span>.</span></span> 92 <span><span>.</span><span>.</span><span>.</span></span>
84 </div> 93 </div>
85 <div id="error-text" class="hidden"></div> 94 <div id="error-text" class="hidden"></div>
86 <div id="error-action-area"> 95 <div id="error-action-area">
87 <button id="error-button" class="hidden"></button> 96 <button id="error-button" class="hidden"></button>
88 <div id="native-print-dialog-throbber" class="throbber hidden"></div> 97 <div id="native-print-dialog-throbber" class="throbber hidden"></div>
89 </div> 98 </div>
90 </div> 99 </div>
91 </div> 100 </div>
92 </div> 101 </div>
93 <object id="dummy-viewer" 102 <object id="dummy-viewer"
94 type="application/x-google-chrome-print-preview-pdf" 103 type="application/x-google-chrome-print-preview-pdf"
95 src="chrome://print/dummy.pdf"></object> 104 src="chrome://print/dummy.pdf"></object>
96 </body> 105 </body>
97 </html> 106 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698