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

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

Issue 2401853005: Adding client code for new Windows 10 First Run Experience (Closed)
Patch Set: 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>$i18n{headerText}</title>
5
6 <link rel="import" href="chrome://resources/html/cr.html">
7 <link rel="import" href="chrome://resources/html/load_time_data.html">
8 <link rel="import" href="chrome://resources/html/polymer.html">
9 <link rel="import" href="chrome://resources/html/util.html">
10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht ml">
11
12 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
13 <link rel="stylesheet" href="chrome://welcome-win10/welcome.css">
14
15 <script src="chrome://welcome-win10/welcome-win10.js"></script>
16 <script src="chrome://welcome-win10/default-browser.js"></script>
17 <script src="chrome://welcome-win10/strings.js"></script>
18 </head>
19 <body>
20 <div class="content">
21 <div class="header-logo"></div>
22 <div class="heading">$i18n{headerText}</div>
23 <div class="sections">
24 <div class="section--expanded">
25 <div class="section-heading">
26 <div class="section-heading-text">$i18n{defaultBrowserSubheaderText}</ div>
27 </div>
28 <ol class="section-steps">
29 <li><a href="#" id="set-default-button">$i18n{openSettingsText}</a></l i>
30 <li>
31 <div id="section-steps--click-edge"></div>
32 <div class="screenshot-image screenshot-image--visible" id="screensh ot-image--default">
33 <div class="screenshot-html-overlay" id="screenshot-html-overlay-- browser">
34 <div>$i18n{webBrowserLabel}</div>
35 </div>
36 <div class="screenshot-html-overlay" id="screenshot-html-overlay-- edge">
37 <div>$i18n{microsoftEdgeLabel}</div>
38 </div>
39 </div>
40 </li>
41 <li id="section-steps--select-chrome"></li>
42 </ol>
43 </div>
44 </div>
45 <a href="#" class="button" id="continue-button">$i18n{continueText}</a>
46 </div>
47
48 </body>
49 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698