Return an error when animating column-count: auto

This changes the behaviour of animations of `column-count`
(hello Captain Obvious) but this is a bugfix.
This commit is contained in:
Anthony Ramine 2018-02-22 10:20:17 +01:00
parent 761689f32d
commit 0a3f30fb12

View file

@ -11,6 +11,7 @@ pub enum ColumnCount<PositiveInteger> {
/// A positive integer. /// A positive integer.
Integer(PositiveInteger), Integer(PositiveInteger),
/// The keyword `auto`. /// The keyword `auto`.
#[animation(error)]
Auto, Auto,
} }