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

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

Issue 10539169: Prototype version of the first-run dialog for Windows 8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed non-windows compilation errors. Created 8 years, 6 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 <!-- Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 Use of this source code is governed by a BSD-style license that can be
3 found in the LICENSE file. -->
4 <!DOCTYPE HTML>
5 <html i18n-values="dir:textdirection">
6 <head>
7 <meta charset="utf-8">
8 <title i18n-content="page-title"></title>
9 <script src="chrome://resources/js/local_strings.js"></script>
10 <script src="chrome://resources/js/cr.js"></script>
11 <script src="chrome://resources/js/util.js"></script>
12 <script src="chrome://resources/js/cr/event_target.js"></script>
13 <script src="../strings.js"></script>
14 <script src="metroize.js"></script>
15
16 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
17 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
18 <link rel="stylesheet" href="metroize.css">
19
20 </head>
21 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
22
23 <div id="metro-setup-outer-container">
24 <div id="metro-setup-overlay" class="page">
25 <div id="metro-setup-view">
26 <div id="metro-setup-content-column">
27 <div id="metro-setup-title-container" class="content-area">
28 <h1 i18n-content="flowTitle"></h1>
29 <h2 i18n-content="flowDescription"></h2>
30 </div>
31 <div id="metro-action-box" class="content-area">
32 <span class="button-strip">
33 <button id="launch-button" class="custom-appearance"
34 i18n-content="flowNext"/>
35 <button id="return-button" i18n-content="flowCancel"/>
36 </div>
37 </div>
38 </div>
39 </div>
40 </div>
41 </div>
42
43 </body>
44 <script src="chrome://resources/js/i18n_template.js"></script>
45 <script src="chrome://resources/js/i18n_process.js"></script>
46 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698