From fe1381b4fea44808d9d13d55baae6146ab6bdfc9 Mon Sep 17 00:00:00 2001 From: Anthony Ramine Date: Fri, 5 May 2017 17:12:12 +0200 Subject: [PATCH] Fix serialisation of 'image-orientation: flip' --- components/style/properties/longhand/inherited_box.mako.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/properties/longhand/inherited_box.mako.rs b/components/style/properties/longhand/inherited_box.mako.rs index 01ee640f8525..e80cb0745221 100644 --- a/components/style/properties/longhand/inherited_box.mako.rs +++ b/components/style/properties/longhand/inherited_box.mako.rs @@ -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(()) },