| OLD | NEW |
| 1 <!doctype html> | 1 <!doctype html> |
| 2 <html i18n-values="dir:textdirection;lang:language"> | 2 <html dir="$i18n{textdirection}" lang="$i18n{language}"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | 5 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> |
| 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="chrome://resources/polymer/v1_0/paper-button/paper-
button.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-
button.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/
paper-radio-button.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-button/
paper-radio-button.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/p
aper-radio-group.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-radio-group/p
aper-radio-group.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.
html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.
html"> |
| 11 <link rel="import" href="signin_shared_css.html"> | 11 <link rel="import" href="signin_shared_css.html"> |
| 12 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | 12 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 </paper-button> | 83 </paper-button> |
| 84 <paper-button class="secondary-action" id="closeButton"> | 84 <paper-button class="secondary-action" id="closeButton"> |
| 85 $i18n{signinEmailConfirmationCloseLabel} | 85 $i18n{signinEmailConfirmationCloseLabel} |
| 86 </paper-button> | 86 </paper-button> |
| 87 </div> | 87 </div> |
| 88 </div> | 88 </div> |
| 89 </body> | 89 </body> |
| 90 <script src="signin_email_confirmation.js"></script> | 90 <script src="signin_email_confirmation.js"></script> |
| 91 <script src="chrome://signin-email-confirmation/strings.js"></script> | 91 <script src="chrome://signin-email-confirmation/strings.js"></script> |
| 92 </html> | 92 </html> |
| OLD | NEW |