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

Unified Diff: chrome/browser/resources/quota_internals/test.html

Issue 7053009: Add chrome://quota-internals/ resources (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: '' Created 9 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/quota_internals/test.html
diff --git a/chrome/browser/resources/quota_internals/test.html b/chrome/browser/resources/quota_internals/test.html
new file mode 100644
index 0000000000000000000000000000000000000000..40394f96f6f8fcfed5f05bf15280ebeae7da25a1
--- /dev/null
+++ b/chrome/browser/resources/quota_internals/test.html
@@ -0,0 +1,80 @@
+<!DOCTYPE html>
Evan Stade 2011/06/04 02:43:17 it seems bad to have 2 almost identical files, alt
tzik 2011/06/06 10:57:44 Done.
+<!--
+Copyright (c) 2011 The Chromium Authors. All rights reserved.
+Use of this source code is governed by a BSD-style license that can be
+found in the LICENSE file.
+-->
+<html i18n-values="dir:textdirection;">
+<title>Quota Internals</title>
+<link rel="stylesheet" href="quota-internals.css"/>
+<script src="../shared/js/util.js"></script>
+<script src="../shared/js/cr.js"></script>
+<script src="../shared/js/cr/event_target.js"></script>
+<script src="../shared/js/i18n_template.js"></script>
+<script src="../shared/js/i18n_template.js"></script>
+
+<link rel="stylesheet" href="../shared/css/tabs.css">
+<link rel="stylesheet" href="../shared/css/tree.css">
+<script src="../shared/js/cr/ui.js"></script>
+<script src="../shared/js/cr/ui/tabs.js"></script>
+<script src="../shared/js/cr/ui/tree.js"></script>
+<script src="../shared/css/tree.css.js"></script>
+<script src="../shared/js/cr/ui/focus_outline_manager.js"></script>
+
+<script src="mock_chrome_message.js"></script>
+<script src="mock_strings.js"></script>
+
+<script src="quota-internals.js"></script>
+<script src="event_handler.js"></script>
+
+<body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
+
+<tabbox id="tabboxes">
+ <tabs>
+ <tab>Summary</tab>
+ <tab>Usage &amp; Quota</tab>
+ <tab>Data</tab>
+ </tabs>
+ <tabpanels>
+ <tabpanel>
+ <!-- Summary -->
+ <h2>Summary</h2>
+ <table>
+ <tbody>
+ <tr>
+ <td>Free disk space for the profile directory.</td>
+ <td id="diskspace-entry">
+ <span i18n-content="text-not_available">N/A</span>
+ </td>
+ </tr>
+ </tbody>
+ </table>
+ <h2>Misc Statistics</h2>
+ <table id="stats-table">
+ <tbody id="stat-entries" class="entries"></tbody>
+ </table>
+ </tabpanel>
+
+ <tabpanel>
+ <!-- Usage and Quota -->
+ <h2>Usage and Quota Database Browser</h2>
+ <div id="tree-view-container">
+ <button id="refresh-button">Refresh</button>
+ <tree id="tree-view"></tree>
+ </div>
+ <table>
+ <thead></thead>
+ <tbody id="tree-item-description"></tbody>
+ </table>
+ </tabpanel>
+
+ <tabpanel>
+ <!-- Data -->
+ <button id="dump-button">Dump</button>
+ <pre id="dump-field"></pre>
+ </tabpanel>
+ </tabpanels>
+</tabbox>
+
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698