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

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

Issue 7396026: Consolidate content-security-policy markup (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 2
3 <!-- 3 <!--
4 about:version template page 4 about:version template page
5 --> 5 -->
6 6
7 <html id="t"> 7 <html id="t">
8 <head> 8 <head>
9 <title i18n-content="title"></title> 9 <title i18n-content="title"></title>
10 <meta http-equiv="X-WebKit-CSP" 10 <include src="content_security_policy.html"/>
11 content="object-src 'none';
12 script-src
13 chrome://resources
14 chrome-extension://mndnfokpggljbaajbnioimlmbfngpief
15 'self' 'unsafe-eval'">
16 <style> 11 <style>
17 body { 12 body {
18 font-family:Helvetica,Arial,sans-serif; 13 font-family:Helvetica,Arial,sans-serif;
19 background-color:white; 14 background-color:white;
20 color: black; 15 color: black;
21 margin: 0px; 16 margin: 0px;
22 } 17 }
23 #outer { 18 #outer {
24 text-align: left; 19 text-align: left;
25 margin-top: 10px; 20 margin-top: 10px;
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 <td class="version" id="profile_path" i18n-content="profile_path"></ td> 102 <td class="version" id="profile_path" i18n-content="profile_path"></ td>
108 </tr> 103 </tr>
109 </table> 104 </table>
110 </div> 105 </div>
111 <script src="chrome://resources/js/i18n_template.js"></script> 106 <script src="chrome://resources/js/i18n_template.js"></script>
112 <script src="chrome://resources/js/i18n_process.js"></script> 107 <script src="chrome://resources/js/i18n_process.js"></script>
113 <script src="chrome://resources/js/jstemplate_compiled.js"></script> 108 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
114 </body> 109 </body>
115 110
116 </html> 111 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698