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

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

Issue 7148023: Add content-security-policy (CSP) to chrome://flags. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 6 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 <style> 5 <style>
6 body { 6 body {
7 margin: 10px; 7 margin: 10px;
8 min-width: 47em; 8 min-width: 47em;
9 } 9 }
10 10
11 #owner-only-warning { 11 #owner-only-warning {
12 font-size: 156%; 12 font-size: 156%;
13 font-weight: bold; 13 font-weight: bold;
14 margin-bottom: 10px; 14 margin-bottom: 10px;
15 margin-top: 10px; 15 margin-top: 10px;
16 padding-bottom: 25px; 16 padding-bottom: 25px;
17 padding-top: 25px; 17 padding-top: 25px;
18 -webkit-margin-start: 10px; 18 -webkit-margin-start: 10px;
19 -webkit-padding-start: 80px; 19 -webkit-padding-start: 80px;
20 background-repeat: no-repeat; 20 background-repeat: no-repeat;
21 background-image: url('shared/images/phishing_icon.png'); 21 background-image: url('shared/images/phishing_icon.png');
22 } 22 }
23 </style> 23 </style>
24 </head> 24 </head>
25 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> 25 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
26 <div id="owner-only-warning"> 26 <div id="owner-only-warning">
27 <span i18n-content="ownerOnly"></span> 27 <span i18n-content="ownerOnly"></span>
28 <span i18n-content="ownerUserId"></span> 28 <span i18n-content="ownerUserId"></span>
29 </div> 29 </div>
30 <script src="chrome://flags/flags.js"></script>
31 <script src="chrome://flags/strings.js"></script>
32 <script src="chrome://resources/js/i18n_template.js"></script>
33 <script src="chrome://resources/js/i18n_process.js"></script>
34 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
30 </body> 35 </body>
31 </html> 36 </html>
37
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698