Update web-platform-tests to revision 89aa3f42131cce5a77268ddaeb2fab8a2e29c2a6

This commit is contained in:
WPT Sync Bot 2019-11-17 10:33:25 +00:00
parent 39963266ae
commit ea00d34098
392 changed files with 5974 additions and 7614 deletions

View file

@ -298,12 +298,12 @@ test(t => {
if (pseudo) {
assert_equals(
actual.effect.target.element,
actual.effect.target,
element,
`Animation #${index + 1} has expected target`
);
assert_equals(
actual.effect.target.type,
actual.effect.pseudoElement,
pseudo,
`Animation #${index + 1} has expected pseudo type`
);
@ -313,6 +313,11 @@ test(t => {
element,
`Animation #${index + 1} has expected target`
);
assert_equals(
actual.effect.pseudoElement,
null,
`Animation #${index + 1} has null pseudo type`
);
}
}
}, 'CSS Animations targetting (pseudo-)elements should have correct order '