style: Make MozScriptLevel::Absolute serialize as -moz-absolute(foo).

This commit is contained in:
Emilio Cobos Álvarez 2017-11-12 16:14:20 +01:00
parent 92944cd5eb
commit 194c2712b5
No known key found for this signature in database
GPG key ID: 056B727BB9C1027C
3 changed files with 5 additions and 4 deletions

View file

@ -991,7 +991,8 @@ pub enum MozScriptLevel {
/// Should only be serialized by presentation attributes, so even though
/// serialization for this would look the same as for the `Relative`
/// variant, it is unexposed, so no big deal.
Absolute(i32),
#[css(function)]
MozAbsolute(i32),
/// Change `font-size` automatically.
Auto
}