| 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"> |
| (...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 | 145 |
| 146 <td class="indexeddb-transaction-requests-pending" | 146 <td class="indexeddb-transaction-requests-pending" |
| 147 jscontent="tasks_scheduled - tasks_completed"> | 147 jscontent="tasks_scheduled - tasks_completed"> |
| 148 </td> | 148 </td> |
| 149 | 149 |
| 150 <td class="indexeddb-transaction-age" | 150 <td class="indexeddb-transaction-age" |
| 151 jscontent="Math.round(age)"> | 151 jscontent="Math.round(age)"> |
| 152 </td> | 152 </td> |
| 153 | 153 |
| 154 <td class="indexeddb-transaction-age"> | 154 <td class="indexeddb-transaction-age"> |
| 155 <span jsdisplay="status == 'started' || status == 'r
unning'" | 155 <span jsdisplay="status == 'started' || status == 'r
unning' || status == 'committing'" |
| 156 jscontent="Math.round(runtime)"> | 156 jscontent="Math.round(runtime)"> |
| 157 </span> | 157 </span> |
| 158 </td> | 158 </td> |
| 159 | 159 |
| 160 <td class="indexeddb-transaction-state" | 160 <td class="indexeddb-transaction-state" |
| 161 jscontent="status"> | 161 jscontent="status"> |
| 162 </td> | 162 </td> |
| 163 </tr> | 163 </tr> |
| 164 </tbody> | 164 </tbody> |
| 165 </table> | 165 </table> |
| 166 </div> | 166 </div> |
| 167 </div> | 167 </div> |
| 168 </div> | 168 </div> |
| 169 </div> | 169 </div> |
| 170 </div> | 170 </div> |
| 171 <h1>IndexedDB</h1> | 171 <h1>IndexedDB</h1> |
| 172 <div class="content"> | 172 <div class="content"> |
| 173 <div id="indexeddb-list"> | 173 <div id="indexeddb-list"> |
| 174 </div> | 174 </div> |
| 175 <script src="chrome://resources/js/util.js"></script> | 175 <script src="chrome://resources/js/util.js"></script> |
| 176 <script src="chrome://resources/js/cr.js"></script> | 176 <script src="chrome://resources/js/cr.js"></script> |
| 177 <script src="indexeddb_internals.js"></script> | 177 <script src="indexeddb_internals.js"></script> |
| 178 <script src="chrome://resources/js/load_time_data.js"></script> | 178 <script src="chrome://resources/js/load_time_data.js"></script> |
| 179 <script src="chrome://resources/js/jstemplate_compiled.js"></script> | 179 <script src="chrome://resources/js/jstemplate_compiled.js"></script> |
| 180 <script src="strings.js"></script> | 180 <script src="strings.js"></script> |
| 181 <script src="chrome://resources/js/i18n_template2.js"></script> | 181 <script src="chrome://resources/js/i18n_template2.js"></script> |
| 182 </body> | 182 </body> |
| 183 </html> | 183 </html> |
| 184 | 184 |
| OLD | NEW |