From 884c7cff8e8e5b272bf6af637ad11fb736f944ee Mon Sep 17 00:00:00 2001 From: Andreas Butler Date: Thu, 31 Jan 2019 15:43:48 +0000 Subject: [PATCH] Bug 1517688 [wpt PR 14709] - [IndexedDB]: Add commit check to aborting txns., a=testonly Automatic update from web-platform-tests [IndexedDB]: Add commit check to aborting txns. A check is added to ensure that transactions that have already been sent a commit signal from the front end (for whatever reason) are committed instead of aborted in the event of an abort. Spec Change: https://github.com/w3c/IndexedDB/pull/242 Explainer: https://andreas-butler.github.io/idb-transaction-commit/EXPLAINER Change-Id: I942136c1bbfb8a5347bf7cf1f9702f5cbff66521 Reviewed-on: https://chromium-review.googlesource.com/c/1330692 Commit-Queue: Andreas Butler Reviewed-by: Victor Costan Reviewed-by: Daniel Murphy Reviewed-by: Chase Phillips Cr-Commit-Position: refs/heads/master@{#619859} -- wpt-commits: 6d9079e341f777ae47b2f39c9d116bfc77d141e2 wpt-pr: 14709 --- .../tests/IndexedDB/keypath-special-identifiers.htm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/testing/web-platform/tests/IndexedDB/keypath-special-identifiers.htm b/testing/web-platform/tests/IndexedDB/keypath-special-identifiers.htm index cb64d0b708eb3..0692bed32ce54 100644 --- a/testing/web-platform/tests/IndexedDB/keypath-special-identifiers.htm +++ b/testing/web-platform/tests/IndexedDB/keypath-special-identifiers.htm @@ -54,6 +54,8 @@ const result = request.result; assert_key_equals(result[testcase.property], key, 'Property should be used as key'); + }); + tx.oncomplete = t.step_func(function() { t.done(); }); },