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

Side by Side Diff: chrome/browser/resources/about_page/about_page.html

Issue 9147054: Revert 117136 - separate about page into its own page (included in chrome://chrome) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 11 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;">
3 <head>
4 <meta charset="utf-8">
5 <title i18n-content="pageTitle"></title>
6
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
8 <link rel="stylesheet" href="chrome://resources/css/chrome_shared2.css">
9 <link rel="stylesheet" href="chrome://resources/css/open_sans.css">
10 <link rel="stylesheet" href="about_page.css">
11
12 <script src="chrome://resources/js/cr.js"></script>
13 <script src="chrome://resources/js/util.js"></script>
14
15 <script src="chrome://about-page-frame/about_page.js"></script>
16 </head>
17
18 <body>
19
20 <div id="aboutPage" class="page">
21 <h1 i18n-content="product"></h1>
22 <div id="aboutPageLessInfo">
23 <section>
24 <div>
25 <!-- White space is significant between spans. -->
26 <div>
27 <span i18n-content="browser"></span>
28 <span i18n-content="browser_version"></span>
29 </div>
30 <div>
31 <if expr="not pp_ifdef('chromeos')">
32 <span i18n-content="os"></span> <span id="osVersion0">
33 </if>
34 <if expr="pp_ifdef('chromeos')">
35 <span i18n-content="platform"></span> <span id="osVersion0">
36 </if>
37 <span class="loading" i18n-content="loading"></span></span></div>
38 <div><span i18n-content="firmware"></span> <span id="osFirmware0">
39 <span class="loading" i18n-content="loading"></span></span></div>
40 <div>
41 <button id="moreInfoButton" class="link-button"
42 i18n-content="more_info"></button>
43 </div>
44 </div>
45 </section>
46 </div>
47 <div id="aboutPageMoreInfo" hidden>
48 <section>
49 <h3 i18n-content="channel"></h3>
50 <div>
51 <select id="channelSelect">
52 <option value="stable-channel" i18n-content="stable"></option>
53 <option value="beta-channel" i18n-content="beta"></option>
54 <option value="dev-channel" i18n-content="dev"></option>
55 </select>
56 <div id="channelWarningBlock" hidden>
57 <div id="channelWarning" i18n-content="channel_warning_header"></div>
58 <div i18n-content="channel_warning_text"></div>
59 </div>
60 </div>
61 </section>
62 <section>
63 <h3 i18n-content="browser"></h3>
64 <div i18n-content="browser_version"></div>
65 </section>
66 <section>
67 <if expr="not pp_ifdef('chromeos')">
68 <h3 i18n-content="os"></h3>
69 </if>
70 <if expr="pp_ifdef('chromeos')">
71 <h3 i18n-content="platform"></h3>
72 </if>
73 <div id="osVersion1">
74 <span class="loading" i18n-content="loading"></span>
75 </div>
76 </section>
77 <section>
78 <h3 i18n-content="firmware"></h3>
79 <div id="osFirmware1">
80 <span class="loading" i18n-content="loading"></span>
81 </section>
82 <section>
83 <h3>WebKit</h3>
84 <div i18n-content="webkit_version"></div>
85 </section>
86 <section>
87 <h3 i18n-content="js_engine"></h3>
88 <div i18n-content="js_engine_version"></div>
89 </section>
90 <section>
91 <h3 i18n-content="user_agent"></h3>
92 <div i18n-content="user_agent_info"></div>
93 </section>
94 <section>
95 <h3 i18n-content="command_line"></h3>
96 <div i18n-content="command_line_info"></div>
97 </section>
98 </div>
99 <section>
100 <div>
101 <span i18n-content="copyright"></span>
102 <div>
103 <!-- Odd formatting to avoid unwanted spaces between elements. -->
104 <span i18n-content="license_content_0">
105 </span><a target="_blank"
106 i18n-values="href:license_link_0"
107 i18n-content="license_link_content_0">
108 </a><span i18n-content="license_content_1">
109 </span><a target="_blank"
110 i18n-values="href:license_link_1"
111 i18n-content="license_link_content_1">
112 </a><span i18n-content="license_content_2">
113 </span>
114 </div>
115 <div>
116 <span i18n-content="cros_license_content_0">
117 </span><a target="_blank"
118 i18n-values="href:cros_license_link_0"
119 i18n-content="cros_license_link_content_0">
120 </a><span i18n-content="cros_license_content_1">
121 </span>
122 </div>
123 </div>
124 </section>
125 <section>
126 <div>
127 <div>
128 <div id="updateIcon" class="update-icon up-to-date"></div>
129 <span id="updateStatus" i18n-content="update_status"></span>
130 </div>
131 <div>
132 <!-- TODO seanparent: fill in last checked. -->
133 <!-- <span i18n-content="last_check"></span> -->
134 <button id="checkNow" i18n-content="check_now" disabled></button>
135 </div>
136 </div>
137 </section>
138 </div>
139
140 </body>
141
142 <script src="chrome://about-page-frame/strings.js"></script>
143 <script src="chrome://resources/js/i18n_template.js"></script>
144 <script src="chrome://resources/js/i18n_process.js"></script>
145 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/about_page/about_page.css ('k') | chrome/browser/resources/about_page/about_page.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698