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

Side by Side Diff: content/browser/resources/indexed_db/indexeddb_internals.html

Issue 14118002: Implement read-only indexedb-internals (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch for landing, nits addressed Created 7 years, 8 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
1 <!DOCTYPE HTML> 1 <!DOCTYPE html>
2 <html> 2 <html i18n-values="dir:textdirection;">
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>IndexedDB Status</title> 5 <title>IndexedDB</title>
6 <link rel="stylesheet" href="chrome://resources/css/tabs.css"> 6 <link rel="stylesheet" href="chrome://resources/css/tabs.css">
7 <link rel="stylesheet" href="chrome://resources/css/widgets.css"> 7 <link rel="stylesheet" href="chrome://resources/css/widgets.css">
8 <link rel="stylesheet" href="indexeddb_internals.css"> 8 <link rel="stylesheet" href="indexeddb_internals.css">
9 <script src="chrome://resources/js/cr.js"></script>
10 <script src="chrome://resources/js/load_time_data.js"></script>
11 <script src="chrome://resources/js/util.js"></script>
12 <script src="strings.js"></script>
13 <script src="indexeddb_internals.js"></script>
14 </head> 9 </head>
15 <body> 10 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
16 <h1>IndexedDB Status</h1> 11 <!-- templates -->
17 <p id="welcome-message">Welcome.</p> 12 <div style="display:none">
18 <script src="chrome://resources/js/i18n_template2.js"></script> 13 <div id="indexeddb-list-template">
14 <div class="indexeddb-summary">
15 <span>IndexedDB instances</span>
16 <span jscontent="'(' + $this.length + ')'"></span>
17 </div>
18 <div class="indexeddb-item" jsselect="$this">
19 <a class="indexeddb-url" jscontent="url" jsvalues="href:url"
20 target="_blank"></a>
21 <div class="indexeddb-size">
22 <span>Size:</span>
23 <span jscontent="size + ' bytes'"></span>
24 </div>
25 <div class="indexeddb-last-modified">
26 <span>Last modified:</span>
27 <span jscontent="new Date(last_modified)"></span>
28 </div>
29 </div>
30 </div>
31 </div>
32 <h1>IndexedDB</h1>
33 <div class="content">
34 <div id="indexeddb-list">
35 </div>
36 <script src="chrome://resources/js/util.js"></script>
37 <script src="chrome://resources/js/cr.js"></script>
38 <script src="indexeddb_internals.js"></script>
39 <script src="chrome://resources/js/load_time_data.js"></script>
40 <script src="chrome://resources/js/jstemplate_compiled.js"></script>
41 <script src="strings.js"></script>
42 <script src="chrome://resources/js/i18n_template2.js"></script>
19 </body> 43 </body>
20 </html> 44 </html>
21 45
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698