Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(47)

Unified Diff: chrome/test/data/indexeddb/cursor_test.js

Issue 6309015: Re-enable indexedDB browser tests after picking up WebKit revision 76531 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/data/indexeddb/cursor_test.js
diff --git a/chrome/test/data/indexeddb/cursor_test.js b/chrome/test/data/indexeddb/cursor_test.js
index 968cc5f6009526a63d131f07524b5f252d3fb89b..c759e0286eec62317ba13ba82e625ba5e88e2073 100644
--- a/chrome/test/data/indexeddb/cursor_test.js
+++ b/chrome/test/data/indexeddb/cursor_test.js
@@ -12,7 +12,7 @@ function openEmptyCursor()
{
debug('Opening an empty cursor.');
keyRange = webkitIDBKeyRange.lowerBound('InexistentKey');
- result = objectStore.openCursor({range: keyRange});
+ result = objectStore.openCursor(keyRange);
result.onsuccess = emptyCursorSuccess;
result.onerror = unexpectedErrorCallback;
}
@@ -38,7 +38,7 @@ function openCursor(objectStore)
{
debug('Opening cursor');
var keyRange = webkitIDBKeyRange.lowerBound(3.12);
- var result = objectStore.openCursor({range: keyRange});
+ var result = objectStore.openCursor(keyRange);
result.onsuccess = cursorSuccess;
result.onerror = unexpectedErrorCallback;
}
« no previous file with comments | « chrome/browser/in_process_webkit/indexed_db_browsertest.cc ('k') | chrome/test/data/indexeddb/index_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698