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

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

Issue 10155030: Fix button order to OK, Cancel (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">
11 <link rel="stylesheet" href="../shared/css/throbber.css"> 11 <link rel="stylesheet" href="../shared/css/throbber.css">
12 <link rel="stylesheet" href="../shared/css/widgets.css"> 12 <link rel="stylesheet" href="../shared/css/widgets.css">
13 13
14 <script src="chrome://resources/js/cr.js"></script> 14 <script src="chrome://resources/js/cr.js"></script>
15 <script src="chrome://resources/js/local_strings.js"></script> 15 <script src="chrome://resources/js/local_strings.js"></script>
16 <script src="chrome://print/strings.js"></script> 16 <script src="chrome://print/strings.js"></script>
17 </head> 17 </head>
18 <body i18n-values=".style.fontFamily:fontfamily"> 18 <body i18n-values=".style.fontFamily:fontfamily">
19 <div id="navbar-container"> 19 <div id="navbar-container">
20 <header> 20 <header>
21 <h1 id="navbar-content-title" i18n-content="title"></h1> 21 <h1 id="navbar-content-title" i18n-content="title"></h1>
22 <div id="print-header"> 22 <div id="print-header">
23 <span id="print-summary"></span> 23 <span id="print-summary"></span>
24 <div class="button-strip"> 24 <div class="button-strip">
25 <button id="cancel-button" i18n-content="cancelButton"></button>
25 <button id="print-button" i18n-content="printButton" class="default"> 26 <button id="print-button" i18n-content="printButton" class="default">
26 </button> 27 </button>
27 <button id="cancel-button" i18n-content="cancelButton"></button>
28 </div> 28 </div>
29 </div> 29 </div>
30 </header> 30 </header>
31 <div id="settings"> 31 <div id="settings">
32 <div id="destination-option" class="two-column visible"> 32 <div id="destination-option" class="two-column visible">
33 <h1 i18n-content="destinationLabel"></h1> 33 <h1 i18n-content="destinationLabel"></h1>
34 <div class="right-column"> 34 <div class="right-column">
35 <select id="printer-list"> 35 <select id="printer-list">
36 <option>Foo</option> 36 <option>Foo</option>
37 <option>Bar</option> 37 <option>Bar</option>
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 i18n-content="intentionallyBlankText" 75 i18n-content="intentionallyBlankText"
76 href="http://www.google.com/support/chrome/bin/answer.py?answer=13795 52"> 76 href="http://www.google.com/support/chrome/bin/answer.py?answer=13795 52">
77 </a> 77 </a>
78 </div> 78 </div>
79 </div> 79 </div>
80 </div> 80 </div>
81 <script src="chrome://resources/js/i18n_template.js"></script> 81 <script src="chrome://resources/js/i18n_template.js"></script>
82 <script src="chrome://resources/js/i18n_process.js"></script> 82 <script src="chrome://resources/js/i18n_process.js"></script>
83 </body> 83 </body>
84 </html> 84 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698