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

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

Issue 10083060: [Print Preview]: Added code to support pdf fit to page functionality. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: '' Created 8 years, 8 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;" id="print-preview"> 2 <html i18n-values="dir:textdirection;" id="print-preview">
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 7
8 <link rel="stylesheet" href="margins.css"> 8 <link rel="stylesheet" href="margins.css">
9 <link rel="stylesheet" href="print_preview.css"> 9 <link rel="stylesheet" href="print_preview.css">
10 <link rel="stylesheet" href="../shared/css/chrome_shared.css"> 10 <link rel="stylesheet" href="../shared/css/chrome_shared.css">
(...skipping 25 matching lines...) Expand all
36 <h1 i18n-content="destinationLabel"></h1> 36 <h1 i18n-content="destinationLabel"></h1>
37 <div class="right-column"> 37 <div class="right-column">
38 <select id="printer-list"></select> 38 <select id="printer-list"></select>
39 </div> 39 </div>
40 </div> 40 </div>
41 <include src="page_settings.html"></include> 41 <include src="page_settings.html"></include>
42 <include src="copies_settings.html"></include> 42 <include src="copies_settings.html"></include>
43 <include src="layout_settings.html"></include> 43 <include src="layout_settings.html"></include>
44 <include src="color_settings.html"></include> 44 <include src="color_settings.html"></include>
45 <include src="margin_settings.html"></include> 45 <include src="margin_settings.html"></include>
46 <include src="header_footer_settings.html"></include> 46 <include src="more_options.html"></include>
47 <div> 47 <div>
48 <if expr="pp_ifdef('chromeos')"> 48 <if expr="pp_ifdef('chromeos')">
49 <button id="system-dialog-link" 49 <button id="system-dialog-link"
50 class="link-button preview-link-button" 50 class="link-button preview-link-button"
51 i18n-content="cloudPrintDialogOption"></button> 51 i18n-content="cloudPrintDialogOption"></button>
52 </if> 52 </if>
53 <if expr="not pp_ifdef('chromeos')"> 53 <if expr="not pp_ifdef('chromeos')">
54 <button id="system-dialog-link" 54 <button id="system-dialog-link"
55 class="link-button preview-link-button" 55 class="link-button preview-link-button"
56 i18n-content="systemDialogOption"></button> 56 i18n-content="systemDialogOption"></button>
(...skipping 27 matching lines...) Expand all
84 </div> 84 </div>
85 </div> 85 </div>
86 </div> 86 </div>
87 <object id="dummy-viewer" 87 <object id="dummy-viewer"
88 type="application/x-google-chrome-print-preview-pdf" 88 type="application/x-google-chrome-print-preview-pdf"
89 data="chrome://print/dummy.pdf"></object> 89 data="chrome://print/dummy.pdf"></object>
90 <script src="chrome://resources/js/i18n_template.js"></script> 90 <script src="chrome://resources/js/i18n_template.js"></script>
91 <script src="chrome://resources/js/i18n_process.js"></script> 91 <script src="chrome://resources/js/i18n_process.js"></script>
92 </body> 92 </body>
93 </html> 93 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698