Fix serialisation of 'image-orientation: <angle> flip'

This commit is contained in:
Anthony Ramine 2017-05-05 17:12:12 +02:00
parent 7fc01437f4
commit fe1381b4fe

View file

@ -168,7 +168,7 @@ ${helpers.single_keyword("image-rendering",
computed_value::T::AngleWithFlipped(angle, flipped) => {
try!(angle.to_css(dest));
if flipped {
try!(dest.write_str(" flipped"));
try!(dest.write_str(" flip"));
}
Ok(())
},