OLD | NEW |
(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 <title>Quota Internals</title> |
| 8 <link rel="stylesheet" href="quota-internals.css"/> |
| 9 <script src="../shared/js/util.js"></script> |
| 10 <script src="../shared/js/cr.js"></script> |
| 11 <script src="../shared/js/cr/event_target.js"></script> |
| 12 <script src="mock_chrome_message.js"></script> |
| 13 |
| 14 <script src="quota-internals.js"></script> |
| 15 <script src="event_handler.js"></script> |
| 16 |
| 17 <div>Available Disk Space: <span id="diskspace-entry">N/A</span></div> |
| 18 |
| 19 <table id="globaldata-table"> |
| 20 <thead> |
| 21 <tr> |
| 22 <th>Type</th> |
| 23 <th>Usage</th> |
| 24 <th>Unlimited Usage</th> |
| 25 <th>Quota</th> |
| 26 </tr> |
| 27 </thead> |
| 28 <tbody id="globaldata-entries" class="entries"></tbody> |
| 29 </table> |
| 30 |
| 31 <table id="hostdata-table"> |
| 32 <thead> |
| 33 <tr> |
| 34 <th>Host</th> |
| 35 <th>Type</th> |
| 36 <th>Usage</th> |
| 37 <th>Quota</th> |
| 38 </tr> |
| 39 </thead> |
| 40 <tbody id="host-entries" class="entries"></tbody> |
| 41 </table> |
| 42 |
| 43 <table id="origindata-table"> |
| 44 <thead> |
| 45 <tr> |
| 46 <th>Origin</th> |
| 47 <th>Type</th> |
| 48 <th>Host</th> |
| 49 <th>In Use</th> |
| 50 <th>Used Count</th> |
| 51 <th>Last Access Time</th> |
| 52 </tr> |
| 53 </thead> |
| 54 <tbody id="origin-entries" class="entries"></tbody> |
| 55 </table> |
| 56 |
| 57 <table id="stats-table"> |
| 58 <thead> |
| 59 <tr> |
| 60 <th>Key</th> |
| 61 <th>Value</th> |
| 62 </tr> |
| 63 </thead> |
| 64 <tbody id="stat-entries" class="entries"></tbody> |
| 65 </table> |
OLD | NEW |