summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/indexeddb/objectstore-cursor.html
diff options
context:
space:
mode:
Diffstat (limited to 'LayoutTests/storage/indexeddb/objectstore-cursor.html')
-rw-r--r--LayoutTests/storage/indexeddb/objectstore-cursor.html5
1 files changed, 1 insertions, 4 deletions
diff --git a/LayoutTests/storage/indexeddb/objectstore-cursor.html b/LayoutTests/storage/indexeddb/objectstore-cursor.html
index bc69b43..25e9456 100644
--- a/LayoutTests/storage/indexeddb/objectstore-cursor.html
+++ b/LayoutTests/storage/indexeddb/objectstore-cursor.html
@@ -195,10 +195,7 @@ function cursorIteration()
window.expectedIndex = ascending ? expectedIndex+1 : expectedIndex-1;
testWithinBounds();
- request = event.result.continue();
- // FIXME: The spec says we should not return an IDBRequest and instead re-use the original request.
- request.onsuccess = cursorIteration;
- request.onerror = unexpectedErrorCallback;
+ event.result.continue();
}
openDatabase(); // The first step.