From 8186d4d4295e1ffd52716ab526896eb62b62a6f4 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Thu, 8 May 2014 15:14:55 +0100 Subject: [PATCH] Try random whitespace changes to maybe fix an issue that I can not reproduce. --- src/components/style/properties.rs.mako | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/components/style/properties.rs.mako b/src/components/style/properties.rs.mako index 83b70567717..9d49a946776 100644 --- a/src/components/style/properties.rs.mako +++ b/src/components/style/properties.rs.mako @@ -1523,9 +1523,10 @@ impl PropertyDeclaration { if !seen.get_${sub_property.ident}() { seen.set_${sub_property.ident}(); result_list.push(${sub_property.ident}_declaration( - CSSWideKeyword(${ - "Inherit" if sub_property.style_struct.inherited else "Initial" - }))); + CSSWideKeyword( + ${"Inherit" if sub_property.style_struct.inherited else "Initial"} + ) + )); } % endfor ValidOrIgnoredDeclaration