[SyncFS] Build indexes from FileTracker entries on disk.
[chromium-blink-merge.git] / content / test / data / indexeddb / database_callbacks_first.html
blob4f99f62f2404fac65bfba36d0cbc2856ec7ec29e
1 <script>
3 function gcAndDetach() {
4 // Collect the IDBRequest so that only the indexeddb message dispatcher
5 // has a reference to IDBDatabase.
6 gc();
7 // Make Document::detach run stopActiveDOMObjects.
8 location.href = 'database_callbacks_second.html';
10 function openConnection() {
11 var idbRequest = webkitIndexedDB.open("database_callbacks_first");
12 // setTimeout is needed so that the IDBRequest returned by
13 // webkitIndexedDB.open() can be garbage collected.
14 idbRequest.onsuccess = function() { setTimeout(gcAndDetach, 0) };
16 openConnection();
17 </script>