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

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

Issue 9124028: separate about page into its own page (included in chrome://chrome) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html i18n-values="dir:textdirection;"> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title i18n-content="pageTitle"></title> 5 <title i18n-content="pageTitle"></title>
6 6
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared2.css"> 7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared2.css">
8 <link rel="stylesheet" href="chrome://resources/css/open_sans.css"> 8 <link rel="stylesheet" href="chrome://resources/css/open_sans.css">
9 <link rel="stylesheet" href="uber.css"> 9 <link rel="stylesheet" href="uber.css">
10 10
11 <script src="chrome://resources/js/cr.js"></script> 11 <script src="chrome://resources/js/cr.js"></script>
12 <script src="chrome://resources/js/util.js"></script> 12 <script src="chrome://resources/js/util.js"></script>
13 13
14 <script src="chrome://chrome/uber.js"></script> 14 <script src="chrome://chrome/uber.js"></script>
15 </head> 15 </head>
16 16
17 <body> 17 <body>
18 18
19 <div id="navigation"> 19 <div id="navigation">
20 <h3 i18n-content="shortProductName"></h3> 20 <h3 i18n-content="shortProductName"></h3>
21 <ol> 21 <ol>
22 <li class="selected" i18n-content="settingsDisplayName"></li> 22 <li class="selected" i18n-content="settingsDisplayName"></li>
23 <li i18n-content="extensionsDisplayName"></li> 23 <li i18n-content="extensionsDisplayName"></li>
24 <if expr="pp_ifdef('chromeos')">
25 <li i18n-content="aboutPageDisplayName" id="aboutPageNavItem"></li>
26 </if>
24 </ol> 27 </ol>
25 </div> 28 </div>
26 29
27 <!-- The order of these must match the order of their nav controls. 30 <!-- The order of these must match the order of their nav controls.
28 The ID (e.g. "settings") doubles as the display pathname 31 The ID (e.g. "settings") doubles as the display pathname
29 (e.g. chrome://chrome/settings). --> 32 (e.g. chrome://chrome/settings). -->
30 <div class="iframe-container selected" i18n-values="id:settingsHost"> 33 <div class="iframe-container selected" i18n-values="id:settingsHost">
31 <iframe src="chrome://settings-frame/"></iframe></div> 34 <iframe src="chrome://settings-frame/"></iframe></div>
32 <div class="iframe-container" i18n-values="id:extensionsHost"> 35 <div class="iframe-container" i18n-values="id:extensionsHost">
33 <iframe src="chrome://extensions-frame/"></iframe></div> 36 <iframe src="chrome://extensions-frame/"></iframe></div>
34 37
38 <if expr="pp_ifdef('chromeos')">
39 <div class="iframe-container" i18n-values="id:aboutPageHost">
40 <iframe src="chrome://about-page-frame/"></iframe></div>
Dan Beam 2012/01/09 23:05:51 Why isn't </div> on following line?
Evan Stade 2012/01/09 23:31:16 I haven't actually looked at an html style guide,
Dan Beam 2012/01/09 23:53:14 At first I thought there was no end </div> tag as
Evan Stade 2012/01/10 04:09:45 I dislike the idea of putting every closing tag on
41 </if>
42
35 </body> 43 </body>
36 44
37 <script src="chrome://chrome/strings.js"></script> 45 <script src="chrome://chrome/strings.js"></script>
38 <script src="chrome://resources/js/i18n_template.js"></script> 46 <script src="chrome://resources/js/i18n_template.js"></script>
39 <script src="chrome://resources/js/i18n_process.js"></script> 47 <script src="chrome://resources/js/i18n_process.js"></script>
40 </html> 48 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698