| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title>$i18n{headerText}</title> | 5 <title>$i18n{headerText}</title> |
| 6 | 6 |
| 7 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 7 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 8 <link rel="import" href="chrome://resources/html/cr.html"> | 8 <link rel="import" href="chrome://resources/html/cr.html"> |
| 9 <link rel="import" href="chrome://resources/html/action_link.html"> | 9 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 10 <link rel="import" href="chrome://resources/html/action_link_css.html"> | 10 <link rel="import" href="chrome://resources/html/action_link_css.html"> |
| 11 <link rel="import" href="chrome://resources/html/polymer.html"> | 11 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 12 <link rel="import" href="chrome://resources/html/util.html"> | 12 <link rel="import" href="chrome://resources/html/util.html"> |
| 13 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.h
tml"> | 13 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.h
tml"> |
| 14 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu
tton.html"> | 14 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-bu
tton.html"> |
| 15 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht
ml"> | 15 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht
ml"> |
| 16 | 16 |
| 17 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> | 17 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| 18 <link rel="stylesheet" href="/welcome.css"> | 18 <link rel="stylesheet" href="/welcome.css"> |
| 19 | 19 |
| 20 <script src="/welcome.js"></script> | 20 <script src="/welcome.js"></script> |
| 21 </head> | 21 </head> |
| 22 <body> | 22 <body> |
| 23 <!-- TODO(tmartino): Create a dom-module and transfer contents of inline.css |
| 24 inside.--> |
| 23 <template is="dom-bind" id="inline-app"> | 25 <template is="dom-bind" id="inline-app"> |
| 24 <div class="content"> | 26 <div class="content"> |
| 25 <div class="header-logo"></div> | 27 <div class="header-logo"></div> |
| 26 <div class="heading">$i18n{headerText}</div> | 28 <div class="heading">$i18n{headerText}</div> |
| 27 <div class="sections"> | 29 <div class="sections"> |
| 28 <div class$="[[computeClasses(isCombined)]]"> | 30 <div class$="[[computeClasses(isCombined)]]"> |
| 29 <template is="dom-if" if="[[isCombined]]"> | 31 <template is="dom-if" if="[[isCombined]]"> |
| 30 <a is="action-link" class="section-heading" on-tap="onToggle"> | 32 <a is="action-link" class="section-heading" on-tap="onToggle"> |
| 31 <div class="section-heading-text"> | 33 <div class="section-heading-text"> |
| 32 $i18n{defaultBrowserSubheaderText} | 34 $i18n{defaultBrowserSubheaderText} |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 </div> | 87 </div> |
| 86 </template> | 88 </template> |
| 87 </div> | 89 </div> |
| 88 <paper-button class="button" on-tap="onContinue"> | 90 <paper-button class="button" on-tap="onContinue"> |
| 89 $i18n{continueText} | 91 $i18n{continueText} |
| 90 </paper-button> | 92 </paper-button> |
| 91 </div> | 93 </div> |
| 92 </template> | 94 </template> |
| 93 </body> | 95 </body> |
| 94 </html> | 96 </html> |
| OLD | NEW |