From e76c9149cb6920227860c8dc5a28e5d60905dfcf Mon Sep 17 00:00:00 2001 From: skyclouds2001 <95597335+skyclouds2001@users.noreply.github.com> Date: Sat, 23 Nov 2024 00:05:19 +0800 Subject: [PATCH] fix(css): Add missing syntax `` for `animation-composition` (#789) * Fix syntax for `animation-composition` * revert some changes --------- Co-authored-by: Brian Smith --- css/properties.json | 2 +- css/syntaxes.json | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/css/properties.json b/css/properties.json index 7e0e0fff..3662ee8e 100644 --- a/css/properties.json +++ b/css/properties.json @@ -1864,7 +1864,7 @@ "appliesto": "allElements", "computed": "asSpecified", "order": "uniqueOrder", - "status": "experimental", + "status": "standard", "mdn_url": "https://developer.mozilla.org/docs/Web/CSS/animation-composition" }, "animation-delay": { diff --git a/css/syntaxes.json b/css/syntaxes.json index 68f68c85..4a0ce22e 100644 --- a/css/syntaxes.json +++ b/css/syntaxes.json @@ -782,6 +782,9 @@ "single-animation": { "syntax": "<'animation-duration'> || || <'animation-delay'> || || || || || [ none | ] || " }, + "single-animation-composition": { + "syntax": "replace | add | accumulate" + }, "single-animation-direction": { "syntax": "normal | reverse | alternate | alternate-reverse" },