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

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

Issue 9579001: css hack n' slash, continued: New styles for buttons and selects. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: message font size Created 8 years, 9 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/button.css"> 10 <link rel="stylesheet" href="../shared/css/button.css">
11 <link rel="stylesheet" href="../shared/css/checkbox.css"> 11 <link rel="stylesheet" href="../shared/css/checkbox.css">
12 <link rel="stylesheet" href="../shared/css/chrome_shared.css"> 12 <link rel="stylesheet" href="../shared/css/chrome_shared.css">
13 <link rel="stylesheet" href="../shared/css/select.css">
14 <link rel="stylesheet" href="../shared/css/throbber.css"> 13 <link rel="stylesheet" href="../shared/css/throbber.css">
15 14
16 <script src="chrome://resources/js/cr.js"></script> 15 <script src="chrome://resources/js/cr.js"></script>
17 <script src="chrome://resources/js/event_tracker.js"></script> 16 <script src="chrome://resources/js/event_tracker.js"></script>
18 <script src="chrome://resources/js/local_strings.js"></script> 17 <script src="chrome://resources/js/local_strings.js"></script>
19 <script src="chrome://resources/js/util.js"></script> 18 <script src="chrome://resources/js/util.js"></script>
20 <script src="chrome://print/print_preview.js"></script> 19 <script src="chrome://print/print_preview.js"></script>
21 <script src="chrome://print/strings.js"></script> 20 <script src="chrome://print/strings.js"></script>
22 </head> 21 </head>
23 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 22 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
86 </div> 85 </div>
87 </div> 86 </div>
88 </div> 87 </div>
89 <object id="dummy-viewer" 88 <object id="dummy-viewer"
90 type="application/x-google-chrome-print-preview-pdf" 89 type="application/x-google-chrome-print-preview-pdf"
91 data="chrome://print/dummy.pdf"></object> 90 data="chrome://print/dummy.pdf"></object>
92 <script src="chrome://resources/js/i18n_template.js"></script> 91 <script src="chrome://resources/js/i18n_template.js"></script>
93 <script src="chrome://resources/js/i18n_process.js"></script> 92 <script src="chrome://resources/js/i18n_process.js"></script>
94 </body> 93 </body>
95 </html> 94 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698