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="chrome://resources/js/util.js"></script> | |
10 <script src="chrome://resources/js/cr.js"></script> | |
11 <script src="chrome://resources/js/cr/event_target.js"></script> | |
12 | |
13 <script src="quota-internals.js"></script> | |
14 <script src="event_handler.js"></script> | |
15 | |
16 <div>Available Disk Space: <span id="diskspace-entry">N/A</span></div> | |
Evan Stade
2011/06/01 00:48:25
Is there a reason not to localize these strings? E
tzik
2011/06/03 16:13:47
Refering other chrome://***-internals/, we had loc
| |
17 | |
18 <table id="globaldata-table"> | |
19 <thead> | |
20 <tr> | |
21 <th>Type</th> | |
22 <th>Usage</th> | |
23 <th>Unlimitid Usage</th> | |
24 <th>Quota</th> | |
25 </tr> | |
26 </thead> | |
27 <tbody id="globaldata-entries" class="entries"></tbody> | |
28 </table> | |
29 | |
30 <table id="hostdata-table"> | |
31 <thead> | |
32 <tr> | |
33 <th>Host</th> | |
34 <th>Type</th> | |
35 <th>Usage</th> | |
36 <th>Quota</th> | |
37 </tr> | |
38 </thead> | |
39 <tbody id="host-entries" class="entries"></tbody> | |
40 </table> | |
41 | |
42 <table id="origindata-table"> | |
43 <thead> | |
44 <tr> | |
45 <th>Origin</th> | |
46 <th>Type</th> | |
47 <th>Host</th> | |
48 <th>In Use</th> | |
49 <th>Used Count</th> | |
50 <th>Last Access Time</th> | |
51 </tr> | |
52 </thead> | |
53 <tbody id="origin-entries" class="entries"></tbody> | |
54 </table> | |
55 | |
56 <table id="stats-table"> | |
57 <thead> | |
58 <tr> | |
59 <th>Key</th> | |
60 <th>Value</th> | |
61 </tr> | |
62 </thead> | |
63 <tbody id="stat-entries" class="entries"></tbody> | |
64 </table> | |
OLD | NEW |