mirror of
https://github.com/servo/servo.git
synced 2025-10-04 02:29:12 +01:00
style: Implement CSS animation-composition longhand in style system
This patch introduces animation-composition longhand but we don't accept it in @keyframe rule for now. I will support this for @keyframe in the patch series. Besides, the shorthand of animation doesn't include animation-composition. The spec issue is: https://github.com/w3c/csswg-drafts/issues/6946. We could fix the shorthand once this spec issue gets updated. Differential Revision: https://phabricator.services.mozilla.com/D150299
This commit is contained in:
parent
047812cb98
commit
06f81aea07
2 changed files with 19 additions and 1 deletions
|
@ -276,6 +276,20 @@ ${helpers.single_keyword(
|
|||
rule_types_allowed=DEFAULT_RULES_EXCEPT_KEYFRAME,
|
||||
)}
|
||||
|
||||
${helpers.single_keyword(
|
||||
"animation-composition",
|
||||
"replace add accumulate",
|
||||
engines="gecko",
|
||||
need_index=True,
|
||||
animation_value_type="none",
|
||||
vector=True,
|
||||
gecko_enum_prefix="CompositeOperation",
|
||||
gecko_inexhaustive=True,
|
||||
gecko_pref="layout.css.animation-composition.enabled",
|
||||
spec="https://drafts.csswg.org/css-animations-2/#animation-composition",
|
||||
rule_types_allowed=DEFAULT_RULES_EXCEPT_KEYFRAME,
|
||||
)}
|
||||
|
||||
${helpers.predefined_type(
|
||||
"animation-delay",
|
||||
"Time",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue