Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(269)

Side by Side Diff: chrome/browser/resources/quota_internals/index.html

Issue 7053009: Add chrome://quota-internals/ resources (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: '' Created 9 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698