Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7580)

Unified Diff: chrome/browser/resources/welcome/win10/inline.html

Issue 2401853005: Adding client code for new Windows 10 First Run Experience (Closed)
Patch Set: Addressing comments #1 Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/resources/welcome/win10/inline.css ('k') | chrome/browser/resources/welcome/win10/inline.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « chrome/browser/resources/welcome/win10/inline.css ('k') | chrome/browser/resources/welcome/win10/inline.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698