| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html i18n-values="dir:textdirection;"> | 2 <html i18n-values="dir:textdirection;"> |
| 3 <head> | 3 <head> |
| 4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
| 5 <title>IndexedDB</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 </head> | 9 </head> |
| 10 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> | 10 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize"> |
| 11 <!-- templates --> | 11 <!-- templates --> |
| 12 <div style="display:none"> | 12 <div style="display:none"> |
| 13 <div id="indexeddb-list-template" | 13 <div id="indexeddb-list-template" |
| 14 jsvalues="$partition_path:$this.partition_path"> | 14 jsvalues="$partition_path:$this.partition_path"> |
| 15 <div class="indexeddb-summary"> | 15 <div class="indexeddb-summary"> |
| 16 <span>Instances in: </span> | 16 <span jsdisplay="$this.partition_path"> |
| 17 <span jscontent="$this.partition_path"></span> | 17 <span>Instances in: </span> |
| 18 <span jscontent="$this.partition_path"></span> |
| 19 </span> |
| 20 <span jsdisplay="!$this.partition_path"> |
| 21 <span>Instances: Incognito </span> |
| 22 </span> |
| 18 <span jscontent="'(' + $this.idbs.length + ')'"></span> | 23 <span jscontent="'(' + $this.idbs.length + ')'"></span> |
| 19 </div> | 24 </div> |
| 20 <div class="indexeddb-item" jsselect="$this.idbs"> | 25 <div class="indexeddb-item" jsselect="$this.idbs"> |
| 21 <a class="indexeddb-url" jscontent="url" jsvalues="href:url" | 26 <a class="indexeddb-url" jscontent="url" jsvalues="href:url" |
| 22 target="_blank"></a> | 27 target="_blank"></a> |
| 23 <div class="indexeddb-size"> | 28 <div class="indexeddb-size"> |
| 24 <span>Size:</span> | 29 <span>Size:</span> |
| 25 <span jscontent="size"></span> | 30 <span jscontent="size"></span> |
| 26 </div> | 31 </div> |
| 27 <div class="indexeddb-last-modified"> | 32 <div class="indexeddb-last-modified"> |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 </div> | 179 </div> |
| 175 <script src="chrome://resources/js/util.js"></script> | 180 <script src="chrome://resources/js/util.js"></script> |
| 176 <script src="chrome://resources/js/cr.js"></script> | 181 <script src="chrome://resources/js/cr.js"></script> |
| 177 <script src="indexeddb_internals.js"></script> | 182 <script src="indexeddb_internals.js"></script> |
| 178 <script src="chrome://resources/js/load_time_data.js"></script> | 183 <script src="chrome://resources/js/load_time_data.js"></script> |
| 179 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 184 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 180 <script src="strings.js"></script> | 185 <script src="strings.js"></script> |
| 181 <script src="chrome://resources/js/i18n_template2.js"></script> | 186 <script src="chrome://resources/js/i18n_template2.js"></script> |
| 182 </body> | 187 </body> |
| 183 </html> | 188 </html> |
| 184 | |
| OLD | NEW |