Auto merge of #16782 - chenpighead:stylo-serialization-of-image-orientation, r=nox

Fix the serialization of image-orientation property

Gecko bug: [Bug 1363295](https://bugzilla.mozilla.org/show_bug.cgi?id=1363295)

<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/16782)
<!-- Reviewable:end -->
This commit is contained in:
bors-servo 2017-05-09 16:10:49 -05:00 committed by GitHub
commit a05427fcd0

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")
}