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

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

Issue 2401853005: Adding client code for new Windows 10 First Run Experience (Closed)
Patch Set: 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
Index: chrome/browser/resources/welcome/win10/inline/default.html
diff --git a/chrome/browser/resources/welcome/win10/inline/default.html b/chrome/browser/resources/welcome/win10/inline/default.html
new file mode 100644
index 0000000000000000000000000000000000000000..81d267ff2b7d6f934fbffa7ebb8720192980b0ac
--- /dev/null
+++ b/chrome/browser/resources/welcome/win10/inline/default.html
@@ -0,0 +1,48 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>$i18n{headerText}</title>
+
+ <link rel="import" href="chrome://resources/html/cr.html">
+ <link rel="import" href="chrome://resources/html/load_time_data.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/paper-styles/color.html">
+
+ <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
+ <link rel="stylesheet" href="chrome://welcome-win10/welcome.css">
+
+ <script src="chrome://welcome-win10/welcome.js"></script>
+ <script src="chrome://welcome-win10/strings.js"></script>
+</head>
+<body>
+ <div class="content">
+ <img src="logo4x.png" class="header-logo">
+ <p class="heading">$i18n{headerText}</p>
+ <div class="subheading">$i18n{subheaderText}</div>
+ <div class="section section--expanded">
tmartino 2016/10/12 22:06:40 What is the effect of using section and section--e
Patrick Monette 2016/10/13 21:30:05 The style for this unique section is the same as t
+ <div class="section-heading">
+ <p class="section-heading-text">$i18n{defaultBrowserSubheaderText}</p>
+ </div>
+ <ol class="section-steps">
+ <li><a href="#" id="set-default-button">$i18n{openSettingsText}</a></li>
+ <li>
+ <p id="section-steps--click-edge">
+ </p>
+ <div class="screenshot-image screenshot-image--visible" id="screenshot-image--default">
+ <div class="screenshot-html-overlay" id="screenshot-html-overlay--browser">
+ <p>$i18n{webBrowserLabel}</p>
+ </div>
+ <div class="screenshot-html-overlay" id="screenshot-html-overlay--edge">
+ <p>$i18n{microsoftEdgeLabel}</p>
+ </div>
+ </div>
+ </li>
+ <li id="section-steps--select-chrome"></li>
+ </ol>
+ </div>
+ <a href="#" class="button" id="continue-button">$i18n{continueText}</a>
+ </div>
+
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698