Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Auto merge of #16739 - nox:image-orientation, r=SimonSapin
Fix serialisation of 'image-orientation: <angle> flip'

<!-- 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/16739)
<!-- Reviewable:end -->
  • Loading branch information
bors-servo committed May 5, 2017
2 parents 7fc0143 + fe1381b commit 09c8978
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/style/properties/longhand/inherited_box.mako.rs
Expand Up @@ -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(())
},
Expand Down

0 comments on commit 09c8978

Please sign in to comment.