Chromium Code Reviews| Index: chrome/browser/resources/welcome/win10/inline.html |
| diff --git a/chrome/browser/resources/welcome/win10/inline.html b/chrome/browser/resources/welcome/win10/inline.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..7f59fe7118ac5d1e2c558846361de4f4dff9d9cc |
| --- /dev/null |
| +++ b/chrome/browser/resources/welcome/win10/inline.html |
| @@ -0,0 +1,83 @@ |
| +<!DOCTYPE html> |
| +<html> |
| +<head> |
| + <title>$i18n{headerText}</title> |
| + |
| + <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| + <link rel="import" href="chrome://resources/html/cr.html"> |
| + <link rel="import" href="chrome://resources/html/polymer.html"> |
| + <link rel="import" href="chrome://resources/html/util.html"> |
| + <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.html"> |
| + <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.html"> |
| + |
| + <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> |
| + <link rel="stylesheet" href="/welcome.css"> |
| + |
| + <script src="/welcome.js"></script> |
| +</head> |
| +<body> |
| + <template is="dom-bind" id="inline-app"> |
| + <div class="content"> |
| + <div class="header-logo"></div> |
| + <div class="heading">$i18n{headerText}</div> |
| + <div class="sections"> |
| + <div class$="[[computeClasses(isCombined)]]"> |
| + <div class="section-heading" on-tap="onToggle"> |
| + <div class="section-heading-text"> |
| + $i18n{defaultBrowserSubheaderText} |
| + </div> |
| + <template is="dom-if" if="[[isCombined]]"> |
| + <iron-icon class="section-heading-expand" icon="cr:expand-more"> |
| + </iron-icon> |
| + </template> |
| + </div> |
| + <ol class="section-steps"> |
| + <li> |
| + <a href="#" on-tap="onOpenSettings">$i18n{openSettingsText}</a> |
| + </li> |
| + <li> |
| + <div>$i18nRaw{clickEdgeText}</div> |
| + <div class="screenshot-image" id="screenshot-image--default"> |
| + <div class="screenshot-html-overlay" |
| + id="screenshot-html-overlay--browser"> |
|
michaelpg
2016/10/24 21:30:08
throughout: 4-space indent (not align)
Patrick Monette
2016/10/24 23:11:33
Done.
|
| + <div>$i18n{webBrowserLabel}</div> |
| + </div> |
| + <div class="screenshot-html-overlay" |
| + id="screenshot-html-overlay--edge"> |
| + <div>$i18n{microsoftEdgeLabel}</div> |
| + </div> |
| + </div> |
| + </li> |
| + <li>$i18nRaw{clickSelectChrome}</li> |
| + </ol> |
| + </div> |
| + <template is="dom-if" if="[[isCombined]]"> |
| + <div class="section expandable"> |
| + <div class="section-heading" on-tap="onToggle"> |
| + <div class="section-heading-text">$i18n{pinSubheaderText}</div> |
| + <iron-icon class="section-heading-expand" icon="cr:expand-more"> |
| + </iron-icon> |
| + </div> |
| + <ol class="section-steps"> |
| + <li>$i18nRaw{rightClickText}</li> |
| + <li> |
| + <div>$i18nRaw{pinInstructionText}</div> |
| + <div class="screenshot-image" id="screenshot-image--taskbar"> |
| + <div class="screenshot-html-overlay" |
| + id="screenshot-html-overlay--taskbar"> |
| + <div>$i18n{pinToTaskbarLabel}</div> |
| + </div> |
| + <div class="screenshot-html-overlay" |
| + id="screenshot-html-overlay--icon"> |
| + </div> |
| + </div> |
| + </li> |
| + </ol> |
| + </div> |
| + </template> |
| + </div> |
| + <a href="#" class="button" on-tap="onContinue">$i18n{continueText}</a> |
| + </div> |
| + </template> |
| +</body> |
| +</html> |