Update web-platform-tests to revision b'e9baa05836ecf60b3aec73de9b55cd7c20952f34'

This commit is contained in:
WPT Sync Bot 2022-12-18 01:50:39 +00:00
parent dae8d221a1
commit bc35487659
139 changed files with 2501 additions and 1291 deletions

View file

@ -148,7 +148,7 @@ function animation_test(property, values, description) {
}, description);
};
function discrete_animation_test(syntax, fromValue, toValue) {
function discrete_animation_test(syntax, fromValue, toValue, description) {
test(() => {
const name = generate_name();
@ -176,5 +176,5 @@ function discrete_animation_test(syntax, fromValue, toValue) {
checkAtProgress(0.5, toValue);
checkAtProgress(0.75, toValue);
checkAtProgress(1, toValue);
}, `Animating a custom property of type ${syntax} is discrete`);
}, description || `Animating a custom property of type ${syntax} is discrete`);
}