mirror of
https://github.com/servo/servo.git
synced 2025-06-28 02:53:48 +01:00
The previous commit removed the dependence on the discriminant value, so we don't need to keep discriminants different from text-align anymore. Differential Revision: https://phabricator.services.mozilla.com/D29361
132 lines
2.5 KiB
Rust
132 lines
2.5 KiB
Rust
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at https://mozilla.org/MPL/2.0/. */
|
|
|
|
//! Generic types for box properties.
|
|
|
|
use crate::values::animated::ToAnimatedZero;
|
|
|
|
#[derive(
|
|
Animate,
|
|
Clone,
|
|
ComputeSquaredDistance,
|
|
Copy,
|
|
Debug,
|
|
FromPrimitive,
|
|
MallocSizeOf,
|
|
Parse,
|
|
PartialEq,
|
|
SpecifiedValueInfo,
|
|
ToComputedValue,
|
|
ToCss,
|
|
ToResolvedValue,
|
|
ToShmem,
|
|
)]
|
|
#[repr(u8)]
|
|
#[allow(missing_docs)]
|
|
pub enum VerticalAlignKeyword {
|
|
Baseline,
|
|
Sub,
|
|
Super,
|
|
Top,
|
|
TextTop,
|
|
Middle,
|
|
Bottom,
|
|
TextBottom,
|
|
#[cfg(feature = "gecko")]
|
|
MozMiddleWithBaseline,
|
|
}
|
|
|
|
/// A generic value for the `vertical-align` property.
|
|
#[derive(
|
|
Animate,
|
|
Clone,
|
|
ComputeSquaredDistance,
|
|
Copy,
|
|
Debug,
|
|
MallocSizeOf,
|
|
PartialEq,
|
|
SpecifiedValueInfo,
|
|
ToComputedValue,
|
|
ToCss,
|
|
ToResolvedValue,
|
|
ToShmem,
|
|
)]
|
|
#[repr(C, u8)]
|
|
pub enum GenericVerticalAlign<LengthPercentage> {
|
|
/// One of the vertical-align keywords.
|
|
Keyword(VerticalAlignKeyword),
|
|
/// `<length-percentage>`
|
|
Length(LengthPercentage),
|
|
}
|
|
|
|
pub use self::GenericVerticalAlign as VerticalAlign;
|
|
|
|
impl<L> VerticalAlign<L> {
|
|
/// Returns `baseline`.
|
|
#[inline]
|
|
pub fn baseline() -> Self {
|
|
VerticalAlign::Keyword(VerticalAlignKeyword::Baseline)
|
|
}
|
|
}
|
|
|
|
impl<L> ToAnimatedZero for VerticalAlign<L> {
|
|
fn to_animated_zero(&self) -> Result<Self, ()> {
|
|
Err(())
|
|
}
|
|
}
|
|
|
|
/// https://drafts.csswg.org/css-animations/#animation-iteration-count
|
|
#[derive(
|
|
Clone,
|
|
Debug,
|
|
MallocSizeOf,
|
|
PartialEq,
|
|
SpecifiedValueInfo,
|
|
ToComputedValue,
|
|
ToCss,
|
|
ToResolvedValue,
|
|
ToShmem,
|
|
)]
|
|
pub enum AnimationIterationCount<Number> {
|
|
/// A `<number>` value.
|
|
Number(Number),
|
|
/// The `infinite` keyword.
|
|
Infinite,
|
|
}
|
|
|
|
/// A generic value for the `perspective` property.
|
|
#[derive(
|
|
Animate,
|
|
Clone,
|
|
ComputeSquaredDistance,
|
|
Copy,
|
|
Debug,
|
|
MallocSizeOf,
|
|
Parse,
|
|
PartialEq,
|
|
SpecifiedValueInfo,
|
|
ToAnimatedValue,
|
|
ToAnimatedZero,
|
|
ToComputedValue,
|
|
ToCss,
|
|
ToResolvedValue,
|
|
ToShmem,
|
|
)]
|
|
#[repr(C, u8)]
|
|
pub enum GenericPerspective<NonNegativeLength> {
|
|
/// A non-negative length.
|
|
Length(NonNegativeLength),
|
|
/// The keyword `none`.
|
|
None,
|
|
}
|
|
|
|
pub use self::GenericPerspective as Perspective;
|
|
|
|
impl<L> Perspective<L> {
|
|
/// Returns `none`.
|
|
#[inline]
|
|
pub fn none() -> Self {
|
|
Perspective::None
|
|
}
|
|
}
|