Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Side by Side Diff: chrome/browser/resources/quota_internals/index.html

Issue 7053009: Add chrome://quota-internals/ resources (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Add comment, merge test.html to index.html. Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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;">
8 <title>Quota Internals</title>
9 <link rel="stylesheet" href="quota-internals.css"/>
10
11 <if expr="True">
12 <script src="chrome://resources/js/util.js"></script>
13 <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/i18n_template.js"></script>
16
17 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
18 <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/tabs.js"></script>
21 <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/js/cr/ui/focus_outline_manager.js"></script>
24 </if>
25
26 <if expr="False">
27 <!-- Test Mode -->
28 <!-- This Block is disabled when the page is built into binary. -->
Evan Stade 2011/06/07 03:40:36 I'm not sure how I feel about committing debug cod
tzik 2011/06/07 08:34:06 I don't think so. #if 0 block will not work anywhe
29 <script src="../shared/js/util.js"></script>
30 <script src="../shared/js/cr.js"></script>
31 <script src="../shared/js/cr/event_target.js"></script>
32 <script src="../shared/js/i18n_template.js"></script>
33 <script src="../shared/js/i18n_template.js"></script>
34
35 <link rel="stylesheet" href="../shared/css/tabs.css">
36 <link rel="stylesheet" href="../shared/css/tree.css">
37 <script src="../shared/js/cr/ui.js"></script>
38 <script src="../shared/js/cr/ui/tabs.js"></script>
39 <script src="../shared/js/cr/ui/tree.js"></script>
40 <script src="../shared/css/tree.css.js"></script>
41 <script src="../shared/js/cr/ui/focus_outline_manager.js"></script>
42
43 <script src="mock_chrome_message.js"></script>
44 <script src="mock_strings.js"></script>
45 </if>
46
47 <script src="quota-internals.js"></script>
48 <script src="event_handler.js"></script>
49
50 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
51
52 <tabbox>
53 <tabs>
54 <tab>Summary</tab>
55 <tab>Usage &amp; Quota</tab>
56 <tab>Data</tab>
57 </tabs>
58 <tabpanels>
59 <tabpanel>
60 <!-- Summary -->
61 <h2>Summary</h2>
62 <table>
63 <tbody>
64 <tr>
65 <td>Free disk space for the profile directory.</td>
66 <td id="diskspace-entry">
67 <span i18n-content="text-not_available">N/A</span>
68 </td>
69 </tr>
70 </tbody>
71 </table>
72 <h2>Misc Statistics</h2>
73 <table>
74 <tbody id="stat-entries" class="entries"></tbody>
75 </table>
76 </tabpanel>
77
78 <tabpanel>
79 <!-- Usage and Quota -->
80 <h2>Usage and Quota Database Browser</h2>
81 <div id="tree-view-container">
82 <button id="refresh-button">Refresh</button>
83 <tree id="tree-view"></tree>
84 </div>
85 <table>
86 <thead></thead>
87 <tbody id="tree-item-description"></tbody>
88 </table>
89 </tabpanel>
90
91 <tabpanel>
92 <!-- Data -->
93 <button id="dump-button">Dump</button>
94 <pre id="dump-field"></pre>
95 </tabpanel>
96 </tabpanels>
97 </tabbox>
98
99 </body>
100 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698