Index: content/test/data/indexeddb/database_callbacks_first.html |
diff --git a/content/test/data/indexeddb/database_callbacks_first.html b/content/test/data/indexeddb/database_callbacks_first.html |
index 4f99f62f2404fac65bfba36d0cbc2856ec7ec29e..7410e0202f036b9c28492c4a84b90d96aa7a6512 100644 |
--- a/content/test/data/indexeddb/database_callbacks_first.html |
+++ b/content/test/data/indexeddb/database_callbacks_first.html |
@@ -8,9 +8,9 @@ |
location.href = 'database_callbacks_second.html'; |
} |
function openConnection() { |
- var idbRequest = webkitIndexedDB.open("database_callbacks_first"); |
+ var idbRequest = indexedDB.open("database_callbacks_first"); |
// setTimeout is needed so that the IDBRequest returned by |
- // webkitIndexedDB.open() can be garbage collected. |
+ // indexedDB.open() can be garbage collected. |
idbRequest.onsuccess = function() { setTimeout(gcAndDetach, 0) }; |
} |
openConnection(); |