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

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

Issue 400013003: Prevent focus from leaving Print Preview overlay controls. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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
« no previous file with comments | « no previous file | chrome/browser/resources/print_preview/print_preview.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;" id="print-preview" class="focus-outline-v isible"> 2 <html i18n-values="dir:textdirection;" id="print-preview" class="focus-outline-v isible">
3 3
4 <head> 4 <head>
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <title id="document-title"></title> 6 <title id="document-title"></title>
7 <link rel="icon" href="../../../app/theme/default_100_percent/common/favicon_p rint_preview.png"> 7 <link rel="icon" href="../../../app/theme/default_100_percent/common/favicon_p rint_preview.png">
8 8
9 <link rel="stylesheet" href="print_preview.css"> 9 <link rel="stylesheet" href="print_preview.css">
10 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css"> 10 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
(...skipping 13 matching lines...) Expand all
24 <link rel="stylesheet" href="search/destination_list.css"> 24 <link rel="stylesheet" href="search/destination_list.css">
25 <link rel="stylesheet" href="search/destination_list_item.css"> 25 <link rel="stylesheet" href="search/destination_list_item.css">
26 <link rel="stylesheet" href="search/destination_search.css"> 26 <link rel="stylesheet" href="search/destination_search.css">
27 <link rel="stylesheet" href="search/search_box.css"> 27 <link rel="stylesheet" href="search/search_box.css">
28 <link rel="stylesheet" href="search/fedex_tos.css"> 28 <link rel="stylesheet" href="search/fedex_tos.css">
29 29
30 <script src="chrome://print/strings.js"></script> 30 <script src="chrome://print/strings.js"></script>
31 <script src="chrome://resources/js/cr.js"></script> 31 <script src="chrome://resources/js/cr.js"></script>
32 <script src="chrome://resources/js/cr/event_target.js"></script> 32 <script src="chrome://resources/js/cr/event_target.js"></script>
33 <script src="chrome://resources/js/cr/ui.js"></script> 33 <script src="chrome://resources/js/cr/ui.js"></script>
34 <script src="chrome://resources/js/cr/ui/focus_manager.js"></script>
34 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> 35 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
35 <script src="chrome://resources/js/event_tracker.js"></script> 36 <script src="chrome://resources/js/event_tracker.js"></script>
36 <script src="chrome://resources/js/local_strings.js"></script> 37 <script src="chrome://resources/js/local_strings.js"></script>
37 <script src="chrome://resources/js/util.js"></script> 38 <script src="chrome://resources/js/util.js"></script>
38 <script src="chrome://print/print_preview.js"></script> 39 <script src="chrome://print/print_preview.js"></script>
39 <script src="chrome://resources/js/i18n_template.js"></script> 40 <script src="chrome://resources/js/i18n_template.js"></script>
40 </head> 41 </head>
41 42
42 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 43 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
43 <div id="navbar-container"> 44 <div id="navbar-container">
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 </div> 83 </div>
83 84
84 <!-- HTML Templates --> 85 <!-- HTML Templates -->
85 <include src="previewarea/margin_control.html"/> 86 <include src="previewarea/margin_control.html"/>
86 <include src="search/destination_list.html"/> 87 <include src="search/destination_list.html"/>
87 <include src="search/destination_list_item.html"/> 88 <include src="search/destination_list_item.html"/>
88 <include src="search/fedex_tos.html"/> 89 <include src="search/fedex_tos.html"/>
89 </body> 90 </body>
90 91
91 </html> 92 </html>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/print_preview/print_preview.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698