diff options
author | Boris Chiou <boris.chiou@gmail.com> | 2023-05-27 15:04:42 +0200 |
---|---|---|
committer | Oriol Brufau <obrufau@igalia.com> | 2023-05-30 23:26:04 +0200 |
commit | 2a7436481c9ee90c146db78477ffef5060cc2115 (patch) | |
tree | 4bbec49615de330e0682e508c404b50f1c87b2f3 /components/style/values/specified/mod.rs | |
parent | 7d8a87cd01cd0edd396afe5be9a09adad87f2e0f (diff) | |
download | servo-2a7436481c9ee90c146db78477ffef5060cc2115.tar.gz servo-2a7436481c9ee90c146db78477ffef5060cc2115.zip |
style: Part 1: Add animation-timeline longhand property in style system
This patch adds the animation-timeline longhand property. For
shorthand, we will do that in the next patch.
This patch includes the aut-generated code in
devtools/shared/css/generated/properties-db.js, by `./mach devtools-css-db`.
Note:
1. we will use this property in Bug 1676791. For now, only make sure
we parse it and serialize it correctly.
2. The syntax of animation-timeline may be updated, based on the spec
issue: https://github.com/w3c/csswg-drafts/issues/6674.
However, it's not a big problem to update it later, so we still can
prototype this property based on the current version of spec.
Differential Revision: https://phabricator.services.mozilla.com/D126450
Diffstat (limited to 'components/style/values/specified/mod.rs')
-rw-r--r-- | components/style/values/specified/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/style/values/specified/mod.rs b/components/style/values/specified/mod.rs index d5ea7f8d9cc..64bc063960e 100644 --- a/components/style/values/specified/mod.rs +++ b/components/style/values/specified/mod.rs @@ -36,7 +36,7 @@ pub use self::basic_shape::FillRule; pub use self::border::{BorderCornerRadius, BorderImageSlice, BorderImageWidth}; pub use self::border::{BorderImageRepeat, BorderImageSideWidth}; pub use self::border::{BorderRadius, BorderSideWidth, BorderSpacing, BorderStyle}; -pub use self::box_::{AnimationIterationCount, AnimationName, Contain, Display}; +pub use self::box_::{AnimationIterationCount, AnimationName, AnimationTimeline, Contain, Display}; pub use self::box_::{Appearance, BreakBetween, BreakWithin}; pub use self::box_::{Clear, Float, Overflow, OverflowAnchor}; pub use self::box_::{OverflowClipBox, OverscrollBehavior, Perspective, Resize}; |