From 512c2e9d88e245cd68b4cce23bca36b6f6b56b7f Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Wed, 10 May 2017 14:38:32 +1000 Subject: [PATCH] Fix serialization of counters function. --- components/style/properties/longhand/counters.mako.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/style/properties/longhand/counters.mako.rs b/components/style/properties/longhand/counters.mako.rs index d5e68d72970..e9e23d54dc0 100644 --- a/components/style/properties/longhand/counters.mako.rs +++ b/components/style/properties/longhand/counters.mako.rs @@ -72,7 +72,7 @@ dest.write_str(")") } ContentItem::Counters(ref s, ref separator, ref list_style_type) => { - try!(dest.write_str("counter(")); + try!(dest.write_str("counters(")); try!(cssparser::serialize_identifier(&**s, dest)); try!(dest.write_str(", ")); try!(cssparser::serialize_string(&**separator, dest));