diff options
author | Xidorn Quan <me@upsuper.org> | 2017-05-10 14:38:32 +1000 |
---|---|---|
committer | Xidorn Quan <me@upsuper.org> | 2017-05-10 14:38:32 +1000 |
commit | 512c2e9d88e245cd68b4cce23bca36b6f6b56b7f (patch) | |
tree | 94b080585c7a036f013cadd857368199f9502b7e | |
parent | e029a426533235d41e062841e1e318357e63911a (diff) | |
download | servo-512c2e9d88e245cd68b4cce23bca36b6f6b56b7f.tar.gz servo-512c2e9d88e245cd68b4cce23bca36b6f6b56b7f.zip |
Fix serialization of counters function.
-rw-r--r-- | components/style/properties/longhand/counters.mako.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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)); |