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

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

Issue 7566049: Add content-security-policy directive to print-preview pages. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 4 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 <title i18n-content="title"></title> 6 <title i18n-content="title"></title>
6 <link rel="icon" href="../../../app/theme/print_preview_favicon.png"> 7 <link rel="icon" href="../../../app/theme/print_preview_favicon.png">
7 <link rel="stylesheet" href="../webui.css"> 8 <link rel="stylesheet" href="../webui.css">
8 <link rel="stylesheet" href="chrome://resources/css/throbber.css"> 9 <link rel="stylesheet" href="chrome://resources/css/throbber.css">
9 <link rel="stylesheet" href="print_preview.css"> 10 <link rel="stylesheet" href="print_preview.css">
10 <script src="chrome://resources/js/local_strings.js"></script> 11 <script src="chrome://resources/js/local_strings.js"></script>
11 <script src="chrome://resources/js/cr.js"></script> 12 <script src="chrome://resources/js/cr.js"></script>
12 <script src="chrome://resources/js/util.js"></script> 13 <script src="chrome://resources/js/util.js"></script>
13 <script src="print_preview.js"></script> 14 <script src="chrome://print/print_preview.js"></script>
14 <script src="print_preview_animations.js"></script> 15 <script src="chrome://print/strings.js"></script>
15 <script src="print_preview_cloud.js"></script>
16 <script src="print_preview_utils.js"></script>
17 <script src="print_header.js"></script>
18 <script src="page_settings.js"></script>
19 <script src="copies_settings.js"></script>
20 <script src="layout_settings.js"></script>
21 <script src="color_settings.js"></script>
22 </head> 16 </head>
23 <body> 17 <body>
24 <div id="sidebar"> 18 <div id="sidebar">
25 <header> 19 <header>
26 <h1 i18n-content="title"></h1> 20 <h1 i18n-content="title"></h1>
27 <div id="print-header"> 21 <div id="print-header">
28 <span id="print-summary"></span> 22 <span id="print-summary"></span>
29 <button id="print-button" i18n-content="printButton" class="default"> 23 <button id="print-button" i18n-content="printButton" class="default">
30 </button> 24 </button>
31 <button id="cancel-button" i18n-content="cancelButton"></button> 25 <button id="cancel-button" i18n-content="cancelButton"></button>
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 <div id="error-text" class="hidden"></div> 57 <div id="error-text" class="hidden"></div>
64 <div id="error-action-area"> 58 <div id="error-action-area">
65 <button id="error-button" class="hidden"></button> 59 <button id="error-button" class="hidden"></button>
66 <div id="native-print-dialog-throbber" class="throbber hidden"></div> 60 <div id="native-print-dialog-throbber" class="throbber hidden"></div>
67 </div> 61 </div>
68 </div> 62 </div>
69 </div> 63 </div>
70 </div> 64 </div>
71 <object id="dummy-viewer" 65 <object id="dummy-viewer"
72 type="application/x-google-chrome-print-preview-pdf" 66 type="application/x-google-chrome-print-preview-pdf"
73 src="chrome://print/dummy.pdf"></object> 67 data="chrome://print/dummy.pdf"></object>
68 <script src="chrome://resources/js/i18n_template.js"></script>
69 <script src="chrome://resources/js/i18n_process.js"></script>
74 </body> 70 </body>
75 </html> 71 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/content_security_policy.html ('k') | chrome/browser/resources/print_preview/print_preview.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698