From 264a679c50befe866148902ce5bf06c870331d3c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emilio=20Cobos=20=C3=81lvarez?= Date: Wed, 7 Nov 2018 00:18:29 +0100 Subject: [PATCH] style: followup post-review nit. --- components/style/values/specified/list.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/components/style/values/specified/list.rs b/components/style/values/specified/list.rs index c4aebb289fe..6b2b6e1e97e 100644 --- a/components/style/values/specified/list.rs +++ b/components/style/values/specified/list.rs @@ -86,8 +86,7 @@ pub struct QuotePair { /// Specified and computed `quotes` property. #[derive(Clone, Debug, MallocSizeOf, PartialEq, SpecifiedValueInfo, ToComputedValue, ToCss)] pub struct Quotes( - #[css(if_empty = "none")] - #[css(iterable)] + #[css(iterable, if_empty = "none")] #[ignore_malloc_size_of = "Arc"] pub Arc> );