[css-multicol] style: Implement percentages for 'column-gap'.

Bug: 1398537
Reviewed-by: emilio,dholbert
This commit is contained in:
Mats Palmgren 2018-04-02 00:25:30 +02:00 committed by Emilio Cobos Álvarez
parent 9677d5c1ba
commit 3532f64b32
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
5 changed files with 26 additions and 12 deletions

View file

@ -897,6 +897,9 @@ pub type NonNegativeLengthOrAuto = Either<NonNegativeLength, Auto>;
/// Either a computed NonNegativeLength or the `normal` keyword.
pub type NonNegativeLengthOrNormal = Either<NonNegativeLength, Normal>;
/// Either a computed NonNegativeLengthOrPercentage or the `normal` keyword.
pub type NonNegativeLengthOrPercentageOrNormal = Either<NonNegativeLengthOrPercentage, Normal>;
/// A type for possible values for min- and max- flavors of width, height,
/// block-size, and inline-size.
#[allow(missing_docs)]