| 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..56e09f84911b25cb90ff47a89ac4d1f8b3c86181
|
| --- /dev/null
|
| +++ b/chrome/browser/resources/quota_internals/test.html
|
| @@ -0,0 +1,65 @@
|
| +<!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="../shared/js/util.js"></script>
|
| +<script src="../shared/js/cr.js"></script>
|
| +<script src="../shared/js/cr/event_target.js"></script>
|
| +<script src="mock_chrome_message.js"></script>
|
| +
|
| +<script src="quota-internals.js"></script>
|
| +<script src="event_handler.js"></script>
|
| +
|
| +<div>Available Disk Space: <span id="diskspace-entry">N/A</span></div>
|
| +
|
| +<table id="globaldata-table">
|
| + <thead>
|
| + <tr>
|
| + <th>Type</th>
|
| + <th>Usage</th>
|
| + <th>Unlimited Usage</th>
|
| + <th>Quota</th>
|
| + </tr>
|
| + </thead>
|
| + <tbody id="globaldata-entries" class="entries"></tbody>
|
| +</table>
|
| +
|
| +<table id="hostdata-table">
|
| + <thead>
|
| + <tr>
|
| + <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>
|
| + <th>Origin</th>
|
| + <th>Type</th>
|
| + <th>Host</th>
|
| + <th>In Use</th>
|
| + <th>Used Count</th>
|
| + <th>Last Access Time</th>
|
| + </tr>
|
| + </thead>
|
| + <tbody id="origin-entries" class="entries"></tbody>
|
| +</table>
|
| +
|
| +<table id="stats-table">
|
| + <thead>
|
| + <tr>
|
| + <th>Key</th>
|
| + <th>Value</th>
|
| + </tr>
|
| + </thead>
|
| + <tbody id="stat-entries" class="entries"></tbody>
|
| +</table>
|
|
|