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

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: 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.js"></script>
18 <script src="chrome://welcome-win10/strings.js"></script>
19 </head>
20 <body>
21 <div class="content">
22 <div class="text">
23 <img src="logo4x.png" class="header-logo">
24 <p class="heading">$i18n{headerText}</p>
25 <div class="sections">
26 <div class="section section--expanded">
27 <div class="section-heading section-heading--expandable">
28 <p class="section-heading-text">$i18n{defaultBrowserSubheaderText}</ p>
29 <iron-icon class="section-heading-expand" icon="icons:expand-more">< /iron-icon>
30 </div>
31 <ol class="section-steps">
32 <li><a href="#" id="set-default-button">$i18n{openSettingsText}</a>< /li>
33 <li id="section-steps--click-edge"></li>
34 <li id="section-steps--select-chrome"></li>
35 </ol>
36 </div>
37 <div class="section">
38 <div class="section-heading section-heading--expandable">
39 <p class="section-heading-text">$i18n{pinSubheaderText}</p>
40 <iron-icon class="section-heading-expand" icon="icons:expand-more">< /iron-icon>
41 </div>
42 <ol class="section-steps">
43 <li id="section-steps--right-click"></li>
44 <li id="section-steps--pin-taskbar"></li>
45 </ol>
46 </div>
47 </div>
48 <a href="#" class="button" id="continue-button">$i18n{continueText}</a>
49 </div>
50 </div>
51 <div class="bg">
52 <div class="screenshots">
53 <div class="screenshot-image screenshot-image--visible" id="screenshot-ima ge--default">
54 <div class="screenshot-html-overlay" id="screenshot-html-overlay--browse r">
55 <p>$i18n{webBrowserLabel}</p>
56 </div>
57 <div class="screenshot-html-overlay" id="screenshot-html-overlay--edge">
58 <p>$i18n{microsoftEdgeLabel}</p>
59 </div>
60 </div>
61 <div class="screenshot-image" id="screenshot-image--taskbar">
62 <div class="screenshot-html-overlay" id="screenshot-html-overlay--taskba r">
63 <p>$i18n{pinToTaskbarLabel}</p>
64 </div>
65 <div class="screenshot-html-overlay" id="screenshot-html-overlay--icon"> </div>
66 </div>
67 </div>
68 </div>
69 </body>
70 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698