BookmarkManager: Fix 'new folder text field size changes on clicking it' issue.
[chromium-blink-merge.git] / chrome / browser / resources / quota_internals / main.html
blob9197fca4536034fca5093dcfbe8f5b4823afb554
1 <!doctype html>
2 <!--
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
5 found in the LICENSE file.
6 -->
7 <html i18n-values="dir:textdirection;lang:language">
8 <title>Quota Internals</title>
9 <meta charset="utf-8">
10 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
11 <link rel="stylesheet" href="main.css">
13 <script src="chrome://resources/js/util.js"></script>
14 <script src="chrome://resources/js/cr.js"></script>
15 <script src="chrome://resources/js/cr/event_target.js"></script>
16 <script src="chrome://resources/js/load_time_data.js"></script>
18 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
19 <link rel="stylesheet" href="chrome://resources/css/tree.css">
20 <script src="chrome://resources/js/cr/ui.js"></script>
21 <script src="chrome://resources/js/cr/ui/tabs.js"></script>
22 <script src="chrome://resources/js/cr/ui/tree.js"></script>
23 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
25 <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/strings.js"></script>
29 <body>
31 <tabbox>
32 <tabs>
33 <tab>Summary</tab>
34 <tab>Usage &amp; Quota</tab>
35 <tab>Data</tab>
36 </tabs>
37 <tabpanels>
38 <tabpanel>
39 <!-- Summary -->
40 <h2>Summary</h2>
41 <table>
42 <tbody>
43 <tr>
44 <td>Free disk space for the profile directory.</td>
45 <td id="diskspace-entry">N/A</td>
46 </tr>
47 </tbody>
48 </table>
49 <h2>Misc Statistics</h2>
50 <table>
51 <tbody id="stat-entries" class="entries"></tbody>
52 </table>
53 </tabpanel>
55 <tabpanel>
56 <!-- Usage and Quota -->
57 <h2>Usage and Quota Database Browser</h2>
58 <div id="tree-view-container">
59 <button id="refresh-button">Refresh</button>
60 <tree id="tree-view"></tree>
61 </div>
62 <table>
63 <thead></thead>
64 <tbody id="tree-item-description"></tbody>
65 </table>
66 </tabpanel>
68 <tabpanel>
69 <!-- Data -->
70 <button id="dump-button">Dump</button>
71 <pre id="dump-field"></pre>
72 </tabpanel>
73 </tabpanels>
74 </tabbox>
76 <script src="chrome://resources/js/i18n_template.js"></script>
77 </body>
78 </html>