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="quota-internals.js"></script> |
| 10 |
| 11 <div>Available Disk Space: <span id="diskspace-entry">N/A</span></div> |
| 12 |
| 13 <table id="globaldata-table"> |
| 14 <thead> |
| 15 <tr class="sort-switches"> |
| 16 <th>Type</th> |
| 17 <th>Usage</th> |
| 18 <th>Quota</th> |
| 19 </tr> |
| 20 </thead> |
| 21 <tbody id="globaldata-entries" class="entries"></tbody> |
| 22 </table> |
| 23 |
| 24 <table id="hostdata-table"> |
| 25 <thead> |
| 26 <tr class="sort-switches"> |
| 27 <th>Host</th> |
| 28 <th>Type</th> |
| 29 <th>Usage</th> |
| 30 <th>Quota</th> |
| 31 </tr> |
| 32 </thead> |
| 33 <tbody id="host-entries" class="entries"></tbody> |
| 34 </table> |
| 35 |
| 36 <table id="origindata-table"> |
| 37 <thead> |
| 38 <tr class="sort-switches"> |
| 39 <th>Origin</th> |
| 40 <th>Type</th> |
| 41 <th>Host</th> |
| 42 <th>In Use</th> |
| 43 <th>Used Count</th> |
| 44 <th>Last Access</th> |
| 45 </tr> |
| 46 </thead> |
| 47 <tbody id="origin-entries" class="entries"></tbody> |
| 48 </table> |
OLD | NEW |