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

Side by Side Diff: chrome/browser/resources/welcome/win10/sectioned/combined.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/iron-icon/iron-icon.h tml">
11 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icons/iron-icons .html">
12 <link rel="import" href="chrome://resources/polymer/v1_0/paper-styles/color.ht ml">
13
14 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
15 <link rel="stylesheet" href="chrome://welcome-win10/welcome.css">
16
17 <script src="chrome://welcome-win10/welcome-win10.js"></script>
18 <script src="chrome://welcome-win10/default-browser.js"></script>
19 <script src="chrome://welcome-win10/taskbar-pin.js"></script>
20 <script src="chrome://welcome-win10/toggle-section.js"></script>
21 <script src="chrome://welcome-win10/toggle-screenshot.js"></script>
22 <script src="chrome://welcome-win10/strings.js"></script>
23 </head>
24 <body>
25 <div class="content">
26 <div class="text">
27 <div class="header-logo"></div>
28 <div class="heading">$i18n{headerText}</div>
29 <div class="sections">
30 <div class="section section--expanded">
31 <div class="section-heading section-heading--expandable">
32 <div class="section-heading-text">$i18n{defaultBrowserSubheaderText} </div>
33 <iron-icon class="section-heading-expand" icon="icons:expand-more">< /iron-icon>
34 </div>
35 <ol class="section-steps">
36 <li><a href="#" id="set-default-button">$i18n{openSettingsText}</a>< /li>
37 <li id="section-steps--click-edge"></li>
38 <li id="section-steps--select-chrome"></li>
39 </ol>
40 </div>
41 <div class="section">
42 <div class="section-heading section-heading--expandable">
43 <div class="section-heading-text">$i18n{pinSubheaderText}</div>
44 <iron-icon class="section-heading-expand" icon="icons:expand-more">< /iron-icon>
45 </div>
46 <ol class="section-steps">
47 <li id="section-steps--right-click"></li>
48 <li id="section-steps--pin-taskbar"></li>
49 </ol>
50 </div>
51 </div>
52 <a href="#" class="button" id="continue-button">$i18n{continueText}</a>
53 </div>
54 </div>
55 <div class="bg">
56 <div class="screenshots">
57 <div class="screenshot-image screenshot-image--visible" id="screenshot-ima ge--default">
58 <div class="screenshot-html-overlay" id="screenshot-html-overlay--browse r">
59 <div>$i18n{webBrowserLabel}</div>
60 </div>
61 <div class="screenshot-html-overlay" id="screenshot-html-overlay--edge">
62 <div>$i18n{microsoftEdgeLabel}</div>
63 </div>
64 </div>
65 <div class="screenshot-image" id="screenshot-image--taskbar">
66 <div class="screenshot-html-overlay" id="screenshot-html-overlay--taskba r">
67 <div>$i18n{pinToTaskbarLabel}</div>
68 </div>
69 <div class="screenshot-html-overlay" id="screenshot-html-overlay--icon"> </div>
70 </div>
71 </div>
72 </div>
73 </body>
74 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698