summaryrefslogtreecommitdiffstats
path: root/tools/page_cycler
diff options
context:
space:
mode:
authorjsbell@chromium.org <jsbell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-27 20:42:50 +0000
committerjsbell@chromium.org <jsbell@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-10-27 20:42:50 +0000
commit5f1938fafdf6f706a5bceaff6d93442633c1d10c (patch)
tree4c3f3603e7f158dd5f36df693b83d8abd9be4fe9 /tools/page_cycler
parente4ff9e5aefc9097716cd29775dfb2aee1f8f1327 (diff)
downloadchromium_src-5f1938fafdf6f706a5bceaff6d93442633c1d10c.zip
chromium_src-5f1938fafdf6f706a5bceaff6d93442633c1d10c.tar.gz
chromium_src-5f1938fafdf6f706a5bceaff6d93442633c1d10c.tar.bz2
Fix IndexedDB test to explicitly list transactions. Required by WebKit change
in https://bugs.webkit.org/show_bug.cgi?id=70251 See thread: https://groups.google.com/a/chromium.org/group/chromium-html5/browse_thread/thread/f667458ca6455d33/1496ad2d1a67b53f#1496ad2d1a67b53f BUG=101973 TEST=performance_ui_tests --gtest_filter='*IndexedDB*' Review URL: http://codereview.chromium.org/8341080 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107616 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/page_cycler')
-rw-r--r--tools/page_cycler/indexed_db/basic_insert/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/page_cycler/indexed_db/basic_insert/index.html b/tools/page_cycler/indexed_db/basic_insert/index.html
index 93965abf..3edc046 100644
--- a/tools/page_cycler/indexed_db/basic_insert/index.html
+++ b/tools/page_cycler/indexed_db/basic_insert/index.html
@@ -48,7 +48,7 @@
}
function storeCreated() {
- var transaction = db.transaction([], IDBTransaction.READ_WRITE);
+ var transaction = db.transaction(['store'], IDBTransaction.READ_WRITE);
transaction.oncomplete = insertsDone;
transaction.onabort = error;