Remove 2 unused type aliases

This commit is contained in:
Anthony Ramine 2018-02-26 15:18:43 +01:00
parent e2a6d07dad
commit f10e485740
3 changed files with 0 additions and 19 deletions

View file

@ -550,12 +550,6 @@ impl From<CSSInteger> for PositiveInteger {
}
}
/// <length> | <percentage> | <number>
pub type LengthOrPercentageOrNumber = Either<Number, LengthOrPercentage>;
/// NonNegativeLengthOrPercentage | NonNegativeNumber
pub type NonNegativeLengthOrPercentageOrNumber = Either<NonNegativeNumber, NonNegativeLengthOrPercentage>;
#[allow(missing_docs)]
#[cfg_attr(feature = "servo", derive(MallocSizeOf))]
#[derive(Clone, ComputeSquaredDistance, Copy, Debug, PartialEq)]