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

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

Issue 8619009: Fix print preview control button order for views. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years 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/button.css"> 10 <link rel="stylesheet" href="../shared/css/button.css">
(...skipping 10 matching lines...) Expand all
21 <script src="chrome://print/print_preview.js"></script> 21 <script src="chrome://print/print_preview.js"></script>
22 <script src="chrome://print/strings.js"></script> 22 <script src="chrome://print/strings.js"></script>
23 </head> 23 </head>
24 <body i18n-values=".style.fontFamily:fontfamily"> 24 <body i18n-values=".style.fontFamily:fontfamily">
25 <div id="navbar-container"> 25 <div id="navbar-container">
26 <header> 26 <header>
27 <h1 id="navbar-content-title" i18n-content="title"></h1> 27 <h1 id="navbar-content-title" i18n-content="title"></h1>
28 <div id="print-header"> 28 <div id="print-header">
29 <span id="print-summary"></span> 29 <span id="print-summary"></span>
30 <div class="button-strip"> 30 <div class="button-strip">
31 <button id="cancel-button" i18n-content="cancelButton"></button>
32 <button id="print-button" i18n-content="printButton" class="default"> 31 <button id="print-button" i18n-content="printButton" class="default">
33 </button> 32 </button>
33 <button id="cancel-button" i18n-content="cancelButton"></button>
34 </div> 34 </div>
35 </div> 35 </div>
36 </header> 36 </header>
37 <div id="settings"> 37 <div id="settings">
38 <div id="destination-option" class="two-column visible"> 38 <div id="destination-option" class="two-column visible">
39 <h1 i18n-content="destinationLabel"></h1> 39 <h1 i18n-content="destinationLabel"></h1>
40 <div class="right-column"> 40 <div class="right-column">
41 <select id="printer-list"></select> 41 <select id="printer-list"></select>
42 </div> 42 </div>
43 </div> 43 </div>
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 </div> 87 </div>
88 </div> 88 </div>
89 </div> 89 </div>
90 <object id="dummy-viewer" 90 <object id="dummy-viewer"
91 type="application/x-google-chrome-print-preview-pdf" 91 type="application/x-google-chrome-print-preview-pdf"
92 data="chrome://print/dummy.pdf"></object> 92 data="chrome://print/dummy.pdf"></object>
93 <script src="chrome://resources/js/i18n_template.js"></script> 93 <script src="chrome://resources/js/i18n_template.js"></script>
94 <script src="chrome://resources/js/i18n_process.js"></script> 94 <script src="chrome://resources/js/i18n_process.js"></script>
95 </body> 95 </body>
96 </html> 96 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/print_preview/print_preview.css ('k') | chrome/browser/ui/webui/constrained_html_ui.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698