Chromium Code Reviews

Unified 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: '' Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: chrome/browser/resources/quota_internals/index.html
diff --git a/chrome/browser/resources/quota_internals/index.html b/chrome/browser/resources/quota_internals/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..c428af232f10f2616491d42aab0c9fd44d7019aa
--- /dev/null
+++ b/chrome/browser/resources/quota_internals/index.html
@@ -0,0 +1,48 @@
+<!DOCTYPE html>
+<!--
+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.
+-->
+<title>Quota Internals</title>
+<link rel="stylesheet" href="quota-internals.css"/>
+<script src="quota-internals.js"></script>
+
+<div>Available Disk Space: <span id="diskspace-entry">N/A</span></div>
+
+<table id="globaldata-table">
+ <thead>
+ <tr class="sort-switches">
+ <th>Type</th>
+ <th>Usage</th>
+ <th>Quota</th>
+ </tr>
+ </thead>
+ <tbody id="globaldata-entries" class="entries"></tbody>
+</table>
+
+<table id="hostdata-table">
+ <thead>
+ <tr class="sort-switches">
+ <th>Host</th>
+ <th>Type</th>
+ <th>Usage</th>
+ <th>Quota</th>
+ </tr>
+ </thead>
+ <tbody id="host-entries" class="entries"></tbody>
+</table>
+
+<table id="origindata-table">
+ <thead>
+ <tr class="sort-switches">
+ <th>Origin</th>
+ <th>Type</th>
+ <th>Host</th>
+ <th>In Use</th>
+ <th>Used Count</th>
+ <th>Last Access</th>
+ </tr>
+ </thead>
+ <tbody id="origin-entries" class="entries"></tbody>
+</table>

Powered by Google App Engine