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

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

Issue 8414002: Update chromium tests for new IDBDatabase.transaction() restrictions. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re-enables the test Created 9 years, 2 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 | « no previous file | 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/quota_test.js
diff --git a/chrome/test/data/indexeddb/quota_test.js b/chrome/test/data/indexeddb/quota_test.js
index 807245e1f1413f778fe8c8ed274375ccbd0377e4..815041556aa3b26c9cbd0697ee9cc2eb842eab55 100644
--- a/chrome/test/data/indexeddb/quota_test.js
+++ b/chrome/test/data/indexeddb/quota_test.js
@@ -72,7 +72,7 @@ function startNewTransaction() {
debug("");
debug("Starting new transaction.");
- var trans = db.transaction([], webkitIDBTransaction.READ_WRITE);
+ var trans = db.transaction(['test123'], webkitIDBTransaction.READ_WRITE);
trans.onabort = onAbort;
trans.oncomplete = getQuotaAndUsage;
var store = trans.objectStore('test123');
« no previous file with comments | « no previous file | chrome/test/data/indexeddb/transaction_run_forever.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698