stylo: Fix the serialization of image-orientation property. r=heycam

Gecko bug: Bug 1363295
This commit is contained in:
Jeremy Chen 2017-05-09 08:17:52 +00:00
parent 121662aa57
commit 1c8e6eb30c

View file

@ -87,13 +87,13 @@ ${helpers.single_keyword("image-rendering",
if let Some(angle) = self.angle {
try!(angle.to_css(dest));
if self.flipped {
dest.write_str(" flipped")
dest.write_str(" flip")
} else {
Ok(())
}
} else {
if self.flipped {
dest.write_str("flipped")
dest.write_str("flip")
} else {
dest.write_str("from-image")
}