| OLD | NEW |
| 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 <!-- X-WebKit-CSP is our development name for Content-Security-Policy. | 5 <include src="content_security_policy.html"/> |
| 6 The 'unsafe-eval' is required for jstemplate_compiled.js. | |
| 7 TODO(tsepez) rename when Content-security-policy is done. | |
| 8 --> | |
| 9 <meta http-equiv="X-WebKit-CSP" | |
| 10 content="object-src 'none'; | |
| 11 script-src chrome://resources | |
| 12 chrome-extension://mndnfokpggljbaajbnioimlmbfngpief | |
| 13 'self' 'unsafe-eval'"> | |
| 14 <link rel="stylesheet" href="flags.css"/> | 6 <link rel="stylesheet" href="flags.css"/> |
| 15 <script src="chrome://flags/flags.js"></script> | 7 <script src="chrome://flags/flags.js"></script> |
| 16 <script src="chrome://flags/strings.js"></script> | 8 <script src="chrome://flags/strings.js"></script> |
| 17 <script src="chrome://resources/js/i18n_template.js"></script> | 9 <script src="chrome://resources/js/i18n_template.js"></script> |
| 18 </head> | 10 </head> |
| 19 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 11 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
| 20 <div id="body-container" style="visibility:hidden"> | 12 <div id="body-container" style="visibility:hidden"> |
| 21 | 13 |
| 22 <div id="header"><h1 i18n-content="flagsLongTitle">TITLE</h1></div> | 14 <div id="header"><h1 i18n-content="flagsLongTitle">TITLE</h1></div> |
| 23 | 15 |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 type="button" | 101 type="button" |
| 110 i18n-content="flagsRestartButton">RESTART</button> | 102 i18n-content="flagsRestartButton">RESTART</button> |
| 111 </div> | 103 </div> |
| 112 </div> | 104 </div> |
| 113 </div> | 105 </div> |
| 114 </div> | 106 </div> |
| 115 <script src="chrome://resources/js/i18n_process.js"></script> | 107 <script src="chrome://resources/js/i18n_process.js"></script> |
| 116 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 108 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 117 </body> | 109 </body> |
| 118 </html> | 110 </html> |
| OLD | NEW |