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 <meta charset="utf-8"> | 9 <meta charset="utf-8"> |
| 10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> |
10 <link rel="stylesheet" href="main.css"> | 11 <link rel="stylesheet" href="main.css"> |
11 | 12 |
12 <script src="chrome://resources/js/util.js"></script> | 13 <script src="chrome://resources/js/util.js"></script> |
13 <script src="chrome://resources/js/cr.js"></script> | 14 <script src="chrome://resources/js/cr.js"></script> |
14 <script src="chrome://resources/js/cr/event_target.js"></script> | 15 <script src="chrome://resources/js/cr/event_target.js"></script> |
15 <script src="chrome://resources/js/load_time_data.js"></script> | 16 <script src="chrome://resources/js/load_time_data.js"></script> |
16 | 17 |
17 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> | 18 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> |
18 <link rel="stylesheet" href="chrome://resources/css/tree.css"> | 19 <link rel="stylesheet" href="chrome://resources/css/tree.css"> |
19 <script src="chrome://resources/js/cr/ui.js"></script> | 20 <script src="chrome://resources/js/cr/ui.js"></script> |
20 <script src="chrome://resources/js/cr/ui/tabs.js"></script> | 21 <script src="chrome://resources/js/cr/ui/tabs.js"></script> |
21 <script src="chrome://resources/js/cr/ui/tree.js"></script> | 22 <script src="chrome://resources/js/cr/ui/tree.js"></script> |
22 <script src="chrome://resources/css/tree.css.js"></script> | 23 <script src="chrome://resources/css/tree.css.js"></script> |
23 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> | 24 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script> |
24 | 25 |
25 <script src="chrome://quota-internals/message_dispatcher.js"></script> | 26 <script src="chrome://quota-internals/message_dispatcher.js"></script> |
26 <script src="chrome://quota-internals/event_handler.js"></script> | 27 <script src="chrome://quota-internals/event_handler.js"></script> |
27 <script src="chrome://quota-internals/strings.js"></script> | 28 <script src="chrome://quota-internals/strings.js"></script> |
28 | 29 |
29 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 30 <body> |
30 | 31 |
31 <tabbox> | 32 <tabbox> |
32 <tabs> | 33 <tabs> |
33 <tab>Summary</tab> | 34 <tab>Summary</tab> |
34 <tab>Usage & Quota</tab> | 35 <tab>Usage & Quota</tab> |
35 <tab>Data</tab> | 36 <tab>Data</tab> |
36 </tabs> | 37 </tabs> |
37 <tabpanels> | 38 <tabpanels> |
38 <tabpanel> | 39 <tabpanel> |
39 <!-- Summary --> | 40 <!-- Summary --> |
(...skipping 29 matching lines...) Expand all Loading... |
69 <!-- Data --> | 70 <!-- Data --> |
70 <button id="dump-button">Dump</button> | 71 <button id="dump-button">Dump</button> |
71 <pre id="dump-field"></pre> | 72 <pre id="dump-field"></pre> |
72 </tabpanel> | 73 </tabpanel> |
73 </tabpanels> | 74 </tabpanels> |
74 </tabbox> | 75 </tabbox> |
75 | 76 |
76 <script src="chrome://resources/js/i18n_template2.js"></script> | 77 <script src="chrome://resources/js/i18n_template2.js"></script> |
77 </body> | 78 </body> |
78 </html> | 79 </html> |
OLD | NEW |