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

Unified Diff: chrome/test/data/indexeddb/index_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/cursor_test.js ('k') | chrome/test/data/indexeddb/key_path_test.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/indexeddb/index_test.js
diff --git a/chrome/test/data/indexeddb/index_test.js b/chrome/test/data/indexeddb/index_test.js
index 56f38660a694542da4db2e6728df5d30dc2efc1e..37c67a13c79a9e630bcfdbd9f27bf96ba0fa8e8e 100644
--- a/chrome/test/data/indexeddb/index_test.js
+++ b/chrome/test/data/indexeddb/index_test.js
@@ -33,7 +33,7 @@ function onKeyCursor()
return;
}
- var result = index.openCursor({range: IDBKeyRange.only(55)});
+ var result = index.openCursor(IDBKeyRange.only(55));
result.onsuccess = onCursor;
result.onerror = unexpectedErrorCallback;
gotObjectThroughCursor = false;
@@ -55,7 +55,7 @@ function getSuccess()
shouldBe('event.result.aKey', '55');
shouldBe('event.result.aValue', '"foo"');
- var result = index.openKeyCursor({range: IDBKeyRange.only(55)});
+ var result = index.openKeyCursor(IDBKeyRange.only(55));
result.onsuccess = onKeyCursor;
result.onerror = unexpectedErrorCallback;
gotKeyThroughCursor = false;
« no previous file with comments | « chrome/test/data/indexeddb/cursor_test.js ('k') | chrome/test/data/indexeddb/key_path_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698