Index: content/test/data/indexeddb/cursor_test.js |
diff --git a/content/test/data/indexeddb/cursor_test.js b/content/test/data/indexeddb/cursor_test.js |
index 49e037f22e0adb0ce51633ca8900cfff7ee19518..98b10d0ba5c91906108356ede84288a358ebb0aa 100644 |
--- a/content/test/data/indexeddb/cursor_test.js |
+++ b/content/test/data/indexeddb/cursor_test.js |
@@ -4,14 +4,14 @@ |
function emptyCursorSuccess() |
{ |
- debug('Empty cursor opened successfully.') |
+ debug('Empty cursor opened successfully.'); |
done(); |
} |
function openEmptyCursor() |
{ |
debug('Opening an empty cursor.'); |
- keyRange = webkitIDBKeyRange.lowerBound('InexistentKey'); |
+ keyRange = IDBKeyRange.lowerBound('InexistentKey'); |
request = objectStore.openCursor(keyRange); |
request.onsuccess = emptyCursorSuccess; |
request.onerror = unexpectedErrorCallback; |
@@ -37,7 +37,7 @@ function cursorSuccess() |
function openCursor(objectStore) |
{ |
debug('Opening cursor'); |
- var keyRange = webkitIDBKeyRange.lowerBound(3.12); |
+ var keyRange = IDBKeyRange.lowerBound(3.12); |
var request = objectStore.openCursor(keyRange); |
request.onsuccess = cursorSuccess; |
request.onerror = unexpectedErrorCallback; |