style: Trivially remove some dead code.

Differential Revision: https://phabricator.services.mozilla.com/D26154
This commit is contained in:
Emilio Cobos Álvarez 2019-04-04 17:39:15 +00:00
parent 79fc59c75f
commit ef0b6bb225
3 changed files with 0 additions and 16 deletions

View file

@ -956,9 +956,6 @@ impl NonNegativeLengthPercentageOrAuto {
/// A wrapper of LengthPercentage, whose value must be >= 0.
pub type NonNegativeLengthPercentage = NonNegative<LengthPercentage>;
/// Either a computed NonNegativeLength or the `normal` keyword.
pub type NonNegativeLengthOrNormal = Either<NonNegativeLength, Normal>;
/// Either a NonNegativeLengthPercentage or the `normal` keyword.
pub type NonNegativeLengthPercentageOrNormal = Either<NonNegativeLengthPercentage, Normal>;
@ -998,9 +995,6 @@ impl NonNegativeLengthPercentage {
}
}
/// Either a `<length>` or the `normal` keyword.
pub type LengthOrNormal = Either<Length, Normal>;
/// Either a `<length>` or the `auto` keyword.
///
/// Note that we use LengthPercentage just for convenience, since it pretty much