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> |