diff options
author | Martin Robinson <mrobinson@igalia.com> | 2023-06-06 23:56:59 +0200 |
---|---|---|
committer | Oriol Brufau <obrufau@igalia.com> | 2023-06-09 11:18:07 +0200 |
commit | eb96b29af05e520fc8fe19616d01a784b6d70937 (patch) | |
tree | 78e27c12213aaed5699edfaa841281ea78dc0d88 /components/style/values/specified/mod.rs | |
parent | 8016c434b01afde931f8de909c8b9f839f8b6dd9 (diff) | |
download | servo-eb96b29af05e520fc8fe19616d01a784b6d70937.tar.gz servo-eb96b29af05e520fc8fe19616d01a784b6d70937.zip |
style: Add support for parsing the `content-visibility` property from the CSS Contain specification
Add initial parsing support for the CSS `content-visibility` attribute.
Currently these parsed values have no effect.
Differential Revision: https://phabricator.services.mozilla.com/D140834
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 099b06a48b3..ac622961642 100644 --- a/components/style/values/specified/mod.rs +++ b/components/style/values/specified/mod.rs @@ -38,7 +38,7 @@ pub use self::border::{BorderImageRepeat, BorderImageSideWidth}; pub use self::border::{BorderRadius, BorderSideWidth, BorderSpacing, BorderStyle}; 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_::{Clear, ContentVisibility, Float, Overflow, OverflowAnchor}; pub use self::box_::{OverflowClipBox, OverscrollBehavior, Perspective, Resize, ScrollbarGutter}; pub use self::box_::{ScrollSnapAlign, ScrollSnapAxis, ScrollSnapStrictness, ScrollSnapType}; pub use self::box_::{TouchAction, TransitionProperty, VerticalAlign, WillChange}; |