OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html i18n-values="dir:textdirection;" id="uber"> | |
3 <head> | |
4 <meta charset="utf-8"> | |
5 | |
6 <link rel="stylesheet" href="chrome://resources/css/chrome_shared2.css"> | |
7 <link rel="stylesheet" href="uber_frame.css"> | |
8 | |
9 <script src="chrome://resources/js/cr.js"></script> | |
10 <script src="chrome://uber-frame/uber_frame.js"></script> | |
Dan Beam
2012/01/20 00:59:02
Why are these in the <head>?
| |
11 </head> | |
12 | |
13 <body> | |
14 | |
15 <h1 i18n-content="shortProductName"></h1> | |
16 <ol> | |
17 <li i18n-content="settingsDisplayName" | |
18 i18n-values="controls:settingsHost" class="selected"></li> | |
19 <li i18n-content="extensionsDisplayName" | |
20 i18n-values="controls:extensionsHost"></li> | |
csilv
2012/01/20 03:30:11
The mocks show 'Extensions' above 'Settings'. Not
Evan Stade
2012/01/20 03:36:07
ok, I'll ask Glen (since the mocks have a lot more
| |
21 <if expr="pp_ifdef('chromeos')"> | |
22 <li i18n-content="aboutPageDisplayName" id="aboutPageNavItem" | |
23 i18n-values="controls:aboutPageHost"></li> | |
24 </if> | |
25 </ol> | |
26 | |
27 <script src="chrome://uber-frame/strings.js"></script> | |
28 <script src="chrome://resources/js/i18n_template.js"></script> | |
29 <script src="chrome://resources/js/i18n_process.js"></script> | |
30 | |
31 </body> | |
32 </html> | |
OLD | NEW |