OLD | NEW |
---|---|
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <!-- | 2 <!-- |
3 Copyright (c) 2011 The Chromium Authors. All rights reserved. | 3 Copyright (c) 2011 The Chromium Authors. All rights reserved. |
4 Use of this source code is governed by a BSD-style license that can be | 4 Use of this source code is governed by a BSD-style license that can be |
5 found in the LICENSE file. | 5 found in the LICENSE file. |
6 --> | 6 --> |
7 <html i18n-values="dir:textdirection;"> | 7 <html i18n-values="dir:textdirection;"> |
8 <title>Quota Internals</title> | 8 <title>Quota Internals</title> |
9 <link rel="stylesheet" href="main.css"/> | 9 <link rel="stylesheet" href="main.css"/> |
10 <style> | |
11 body { | |
12 /* Remove body margin as the general tabpanels do not have outer border. */ | |
13 margin: 0; | |
14 } | |
flackr
2011/11/21 20:43:31
Move to CSS file.
bshe
2011/11/22 16:26:24
Done.
| |
15 </style> | |
10 | 16 |
11 <script src="chrome://resources/js/util.js"></script> | 17 <script src="chrome://resources/js/util.js"></script> |
12 <script src="chrome://resources/js/cr.js"></script> | 18 <script src="chrome://resources/js/cr.js"></script> |
13 <script src="chrome://resources/js/cr/event_target.js"></script> | 19 <script src="chrome://resources/js/cr/event_target.js"></script> |
14 <script src="chrome://resources/js/i18n_template.js"></script> | 20 <script src="chrome://resources/js/i18n_template.js"></script> |
15 | 21 |
16 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> | 22 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> |
17 <link rel="stylesheet" href="chrome://resources/css/tree.css"> | 23 <link rel="stylesheet" href="chrome://resources/css/tree.css"> |
18 <script src="chrome://resources/js/cr/ui.js"></script> | 24 <script src="chrome://resources/js/cr/ui.js"></script> |
19 <script src="chrome://resources/js/cr/ui/tabs.js"></script> | 25 <script src="chrome://resources/js/cr/ui/tabs.js"></script> |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
66 <tabpanel> | 72 <tabpanel> |
67 <!-- Data --> | 73 <!-- Data --> |
68 <button id="dump-button">Dump</button> | 74 <button id="dump-button">Dump</button> |
69 <pre id="dump-field"></pre> | 75 <pre id="dump-field"></pre> |
70 </tabpanel> | 76 </tabpanel> |
71 </tabpanels> | 77 </tabpanels> |
72 </tabbox> | 78 </tabbox> |
73 | 79 |
74 </body> | 80 </body> |
75 </html> | 81 </html> |
OLD | NEW |