| Index: content/test/data/indexeddb/key_path_test.js
|
| diff --git a/content/test/data/indexeddb/key_path_test.js b/content/test/data/indexeddb/key_path_test.js
|
| index e31c3433fe237b6efc0ff84171e9e61cd29508d5..9ac61bf3fab9b0072ce7a2dc38cc8bec57b0aad0 100644
|
| --- a/content/test/data/indexeddb/key_path_test.js
|
| +++ b/content/test/data/indexeddb/key_path_test.js
|
| @@ -5,7 +5,7 @@
|
|
|
| function cursorSuccess()
|
| {
|
| - debug("Cursor opened successfully.")
|
| + debug("Cursor opened successfully.");
|
| // FIXME: check that we can iterate the cursor.
|
| shouldBe("event.target.result.direction", "'next'");
|
| shouldBe("event.target.result.key", "'myKey' + count");
|
| @@ -20,7 +20,7 @@ function cursorSuccess()
|
| function openCursor()
|
| {
|
| debug("Opening cursor #" + count);
|
| - keyRange = webkitIDBKeyRange.lowerBound("myKey" + count);
|
| + keyRange = IDBKeyRange.lowerBound("myKey" + count);
|
| request = objectStore.openCursor(keyRange);
|
| request.onsuccess = cursorSuccess;
|
| request.onerror = unexpectedErrorCallback;
|
|
|