OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <!-- | |
3 Copyright 2013 The Chromium Authors. All rights reserved. | |
4 Use of this source code is governed by a BSD-style license that can be | |
5 found in the LICENSE file. | |
6 --> | |
7 <html i18n-values="dir:textdirection;"> | |
8 <title>Quota Internals</title> | |
9 <link rel="stylesheet" href="main.css"> | |
10 | |
11 <script src="chrome://resources/js/util.js"></script> | |
12 <script src="chrome://resources/js/cr.js"></script> | |
13 <script src="chrome://resources/js/cr/event_target.js"></script> | |
14 <script src="chrome://resources/js/i18n_template.js"></script> | |
15 | |
16 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> | |
17 <link rel="stylesheet" href="chrome://resources/css/tree.css"> | |
arv (Not doing code reviews)
2013/04/23 18:54:33
I don't see where you are using a tree?
calvinlo
2013/04/24 07:53:23
Removed. I should have cleaned this up after I cop
| |
18 <script src="chrome://resources/js/cr/ui.js"></script> | |
19 <script src="chrome://resources/js/cr/ui/tabs.js"></script> | |
20 <script src="chrome://resources/js/cr/ui/tree.js"></script> | |
21 <script src="chrome://resources/css/tree.css.js"></script> | |
22 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> | |
23 | |
24 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | |
25 | |
26 <tabbox> | |
27 <tabs> | |
28 <tab>Sync Service</tab> | |
29 </tabs> | |
30 <tabpanels> | |
31 | |
32 <tabpanel> | |
33 <!-- Sync Service --> | |
34 <h2>Sync Service</h2> | |
35 </tabpanel> | |
36 | |
37 </tabpanels> | |
38 </tabbox> | |
39 | |
40 </body> | |
41 </html> | |
OLD | NEW |