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

Unified Diff: chrome/test/data/indexeddb/key_path_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
« no previous file with comments | « chrome/test/data/indexeddb/index_test.js ('k') | chrome/test/data/indexeddb/transaction_run_forever.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/indexeddb/key_path_test.js
diff --git a/chrome/test/data/indexeddb/key_path_test.js b/chrome/test/data/indexeddb/key_path_test.js
index b6825e6f1670c3b077803db6b383bbd499b0ba22..8abda7d0ac9b9d1a33875657a51d20f6747e7803 100644
--- a/chrome/test/data/indexeddb/key_path_test.js
+++ b/chrome/test/data/indexeddb/key_path_test.js
@@ -21,7 +21,7 @@ function openCursor()
{
debug("Opening cursor #" + count);
keyRange = webkitIDBKeyRange.lowerBound("myKey" + count);
- result = objectStore.openCursor({range: keyRange});
+ result = objectStore.openCursor(keyRange);
result.onsuccess = cursorSuccess;
result.onerror = unexpectedErrorCallback;
}
« no previous file with comments | « chrome/test/data/indexeddb/index_test.js ('k') | chrome/test/data/indexeddb/transaction_run_forever.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698