| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html dir="$i18n{textdirection}" lang="$i18n{language}"> | 2 <html dir="$i18n{textdirection}" lang="$i18n{language}"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title>$i18n{settings}</title> | 5 <title>$i18n{settings}</title> |
| 6 <link rel="import" href="chrome://resources/html/polymer.html"> | 6 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 7 <!-- <link rel="import" href="/i18n_setup.html">--> |
| 8 |
| 9 <if expr="use_vulcanize"> |
| 10 <script src="chrome://resources/js/i18n_template_no_process.js"></script> |
| 11 </if> |
| 12 |
| 13 <!-- <link rel="import" href="/direction_delegate.html">--> |
| 7 <link rel="import" href="/settings_ui/settings_ui.html"> | 14 <link rel="import" href="/settings_ui/settings_ui.html"> |
| 8 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | 15 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 9 <link rel="import" href="chrome://resources/html/i18n_template.html"> | 16 <link rel="import" href="chrome://resources/html/i18n_template.html"> |
| 10 <!-- Do not add any <link rel="..."> elements below here. Imports outside of | 17 <!-- Do not add any <link rel="..."> elements below here. Imports outside of |
| 11 <head> are disallowed by HTML5 and cause undefined behavior that | 18 <head> are disallowed by HTML5 and cause undefined behavior that |
| 12 confuses Polymer's lifecycle methods: crbug.com/638074. --> | 19 confuses Polymer's lifecycle methods: crbug.com/638074. --> |
| 13 </head> | 20 </head> |
| 14 <body> | 21 <body> |
| 15 <settings-ui></settings-ui> | 22 <settings-ui></settings-ui> |
| 16 </body> | 23 </body> |
| 17 </html> | 24 </html> |
| OLD | NEW |