ozone: evdev: Sync caps lock LED state to evdev
[chromium-blink-merge.git] / chrome / browser / resources / quota_internals / main.html
blobd7fec81a09c06b18e13ff0b6e186e5846ed6eee9
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/css/tree.css.js"></script>
24 <script src="chrome://resources/js/cr/ui/focus_outline_manager.js"></script>
26 <script src="chrome://quota-internals/message_dispatcher.js"></script>
27 <script src="chrome://quota-internals/event_handler.js"></script>
28 <script src="chrome://quota-internals/strings.js"></script>
30 <body>
32 <tabbox>
33 <tabs>
34 <tab>Summary</tab>
35 <tab>Usage &amp; Quota</tab>
36 <tab>Data</tab>
37 </tabs>
38 <tabpanels>
39 <tabpanel>
40 <!-- Summary -->
41 <h2>Summary</h2>
42 <table>
43 <tbody>
44 <tr>
45 <td>Free disk space for the profile directory.</td>
46 <td id="diskspace-entry">N/A</td>
47 </tr>
48 </tbody>
49 </table>
50 <h2>Misc Statistics</h2>
51 <table>
52 <tbody id="stat-entries" class="entries"></tbody>
53 </table>
54 </tabpanel>
56 <tabpanel>
57 <!-- Usage and Quota -->
58 <h2>Usage and Quota Database Browser</h2>
59 <div id="tree-view-container">
60 <button id="refresh-button">Refresh</button>
61 <tree id="tree-view"></tree>
62 </div>
63 <table>
64 <thead></thead>
65 <tbody id="tree-item-description"></tbody>
66 </table>
67 </tabpanel>
69 <tabpanel>
70 <!-- Data -->
71 <button id="dump-button">Dump</button>
72 <pre id="dump-field"></pre>
73 </tabpanel>
74 </tabpanels>
75 </tabbox>
77 <script src="chrome://resources/js/i18n_template2.js"></script>
78 </body>
79 </html>