diff options
Diffstat (limited to 'components/style/values/computed/box.rs')
-rw-r--r-- | components/style/values/computed/box.rs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/components/style/values/computed/box.rs b/components/style/values/computed/box.rs index eeeede9c33a..72d309b707f 100644 --- a/components/style/values/computed/box.rs +++ b/components/style/values/computed/box.rs @@ -5,8 +5,9 @@ //! Computed types for box properties. use values::computed::Number; -use values::computed::length::LengthOrPercentage; +use values::computed::length::{LengthOrPercentage, NonNegativeLength}; use values::generics::box_::AnimationIterationCount as GenericAnimationIterationCount; +use values::generics::box_::Perspective as GenericPerspective; use values::generics::box_::VerticalAlign as GenericVerticalAlign; pub use values::specified::box_::{AnimationName, Display, OverflowClipBox, Contain}; @@ -25,3 +26,6 @@ impl AnimationIterationCount { GenericAnimationIterationCount::Number(1.0) } } + +/// A computed value for the `perspective` property. +pub type Perspective = GenericPerspective<NonNegativeLength>; |