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

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

Issue 7891016: Print Preview: Adding UI for margin settings. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Removing print_preview.Point Created 9 years, 2 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 <include src="../content_security_policy.html"/> 5 <include src="../content_security_policy.html"/>
6 <title i18n-content="title"></title> 6 <title i18n-content="title"></title>
7 <link rel="icon" href="../../../app/theme/print_preview_favicon.png"> 7 <link rel="icon" href="../../../app/theme/print_preview_favicon.png">
8 <link rel="stylesheet" href="../webui.css"> 8 <link rel="stylesheet" href="../webui.css">
9 <link rel="stylesheet" href="chrome://resources/css/throbber.css"> 9 <link rel="stylesheet" href="chrome://resources/css/throbber.css">
10 <link rel="stylesheet" href="print_preview.css"> 10 <link rel="stylesheet" href="print_preview.css">
(...skipping 21 matching lines...) Expand all
32 </div> 32 </div>
33 <hr> 33 <hr>
34 <include src="page_settings.html"></include> 34 <include src="page_settings.html"></include>
35 <hr id="hr-before-copies" class="invisible"> 35 <hr id="hr-before-copies" class="invisible">
36 <include src="copies_settings.html"></include> 36 <include src="copies_settings.html"></include>
37 <hr> 37 <hr>
38 <include src="layout_settings.html"></include> 38 <include src="layout_settings.html"></include>
39 <hr> 39 <hr>
40 <include src="color_settings.html"></include> 40 <include src="color_settings.html"></include>
41 <hr> 41 <hr>
42 <div id="display-margin-options" hidden> 42 <include src="margin_settings.html"></include>
43 <include src="margin_settings.html"></include> 43 <hr>
44 <hr>
45 </div>
46 <include src="header_footer_settings.html"></include> 44 <include src="header_footer_settings.html"></include>
47 <hr> 45 <hr>
48 <div id="system-dialog-div"> 46 <div id="system-dialog-div">
49 <if expr="pp_ifdef('chromeos')"> 47 <if expr="pp_ifdef('chromeos')">
50 <button id="system-dialog-link" class="link-button" 48 <button id="system-dialog-link" class="link-button"
51 i18n-content="cloudPrintDialogOption"></button> 49 i18n-content="cloudPrintDialogOption"></button>
52 </if> 50 </if>
53 <if expr="not pp_ifdef('chromeos')"> 51 <if expr="not pp_ifdef('chromeos')">
54 <button id="system-dialog-link" class="link-button" 52 <button id="system-dialog-link" class="link-button"
55 i18n-content="systemDialogOption"></button> 53 i18n-content="systemDialogOption"></button>
(...skipping 20 matching lines...) Expand all
76 </div> 74 </div>
77 </div> 75 </div>
78 </div> 76 </div>
79 <object id="dummy-viewer" 77 <object id="dummy-viewer"
80 type="application/x-google-chrome-print-preview-pdf" 78 type="application/x-google-chrome-print-preview-pdf"
81 data="chrome://print/dummy.pdf"></object> 79 data="chrome://print/dummy.pdf"></object>
82 <script src="chrome://resources/js/i18n_template.js"></script> 80 <script src="chrome://resources/js/i18n_template.js"></script>
83 <script src="chrome://resources/js/i18n_process.js"></script> 81 <script src="chrome://resources/js/i18n_process.js"></script>
84 </body> 82 </body>
85 </html> 83 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698