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

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: Added Headers and Footers support - New Snapshot Uploaded 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 <input id="color" type="radio" name="color"/> 75 <input id="color" type="radio" name="color"/>
76 <label for="color" i18n-content="optionColor"></label> 76 <label for="color" i18n-content="optionColor"></label>
77 </div> 77 </div>
78 <div> 78 <div>
79 <input id="bw" type="radio" name="color" checked/> 79 <input id="bw" type="radio" name="color" checked/>
80 <label for="bw" i18n-content="optionBw"></label> 80 <label for="bw" i18n-content="optionBw"></label>
81 </div> 81 </div>
82 </div> 82 </div>
83 </div> 83 </div>
84 <hr> 84 <hr>
85 <div id="options-option" class="two-column option visible">
kmadhusu 2011/07/13 01:49:07 Where do you use this div id?
Aayush Kumar 2011/07/13 21:52:16 Done.
86 <h1 i18n-content="optionsLabel"></h1>
87 <div>
kmadhusu 2011/07/13 01:49:07 Why do you have two <div> tags here?
Aayush Kumar 2011/07/13 21:52:16 Done.
88 <div>
89 <input id="header-footer" type="checkbox" name="header-footer"
kmadhusu 2011/07/13 01:49:07 Do you need this name attribute?
Aayush Kumar 2011/07/13 21:52:16 Done.
90 checked/>
91 <label for="header-footer" i18n-content="optionHeaderFooter">
92 </label>
93 </div>
94 </div>
95 </div>
96 <hr>
85 <div id="system-dialog-div"> 97 <div id="system-dialog-div">
86 <button id="system-dialog-link" class="link-button" 98 <button id="system-dialog-link" class="link-button"
87 i18n-content="systemDialogOption"></button> 99 i18n-content="systemDialogOption"></button>
88 <!-- TODO(dpapad): Investigate whey hidden attribute does not work. --> 100 <!-- TODO(dpapad): Investigate whey hidden attribute does not work. -->
89 <div id="system-dialog-throbber" class="throbber hidden"></div> 101 <div id="system-dialog-throbber" class="throbber hidden"></div>
90 </div> 102 </div>
91 </div> 103 </div>
92 </div> 104 </div>
93 <div id="mainview"> 105 <div id="mainview">
94 <div id="overlay-layer" class="invisible"> 106 <div id="overlay-layer" class="invisible">
95 <div id="messages"> 107 <div id="messages">
96 <div id="dancing-dots-text" class="hidden"> 108 <div id="dancing-dots-text" class="hidden">
97 <span id="loading" i18n-content="loading"></span> 109 <span id="loading" i18n-content="loading"></span>
98 <span><span>.</span><span>.</span><span>.</span></span> 110 <span><span>.</span><span>.</span><span>.</span></span>
99 </div> 111 </div>
100 <div id="error-text" class="hidden"></div> 112 <div id="error-text" class="hidden"></div>
101 <div id="error-action-area"> 113 <div id="error-action-area">
102 <button id="error-button" class="hidden"></button> 114 <button id="error-button" class="hidden"></button>
103 <div id="native-print-dialog-throbber" class="throbber hidden"></div> 115 <div id="native-print-dialog-throbber" class="throbber hidden"></div>
104 </div> 116 </div>
105 </div> 117 </div>
106 </div> 118 </div>
107 </div> 119 </div>
108 <object id="dummy-viewer" 120 <object id="dummy-viewer"
109 type="application/x-google-chrome-print-preview-pdf" 121 type="application/x-google-chrome-print-preview-pdf"
110 src="chrome://print/dummy.pdf"></object> 122 src="chrome://print/dummy.pdf"></object>
111 </body> 123 </body>
112 </html> 124 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698