summaryrefslogtreecommitdiffstats
path: root/LayoutTests/storage/indexeddb/create-object-store-options.html
diff options
context:
space:
mode:
Diffstat (limited to 'LayoutTests/storage/indexeddb/create-object-store-options.html')
-rw-r--r--LayoutTests/storage/indexeddb/create-object-store-options.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/LayoutTests/storage/indexeddb/create-object-store-options.html b/LayoutTests/storage/indexeddb/create-object-store-options.html
index eacb09d..6709e58 100644
--- a/LayoutTests/storage/indexeddb/create-object-store-options.html
+++ b/LayoutTests/storage/indexeddb/create-object-store-options.html
@@ -47,7 +47,7 @@ function cleaned()
debug("db.createObjectStore('c', {autoIncrement: true});");
db.createObjectStore('c', {autoIncrement: true});
- trans = evalAndLog("trans = db.transaction({mode: webkitIDBTransaction.READ_WRITE})");
+ trans = evalAndLog("trans = db.transaction([], webkitIDBTransaction.READ_WRITE)");
shouldBe("trans.mode", "webkitIDBTransaction.READ_WRITE");
req = evalAndLog("trans.objectStore('a').put({'a': 0})");