Add the 'symbols' descriptor for @counter-style

This commit is contained in:
Simon Sapin 2017-04-14 10:35:13 +02:00
parent 0ba5cae707
commit fe15663423
2 changed files with 46 additions and 1 deletions

View file

@ -227,3 +227,11 @@ impl ToNsCssValue for counter_style::Fallback {
nscssvalue.set_ident_from_atom(&self.0 .0)
}
}
impl ToNsCssValue for counter_style::Symbols {
fn convert(&self, _nscssvalue: &mut nsCSSValue) {
if !self.0.is_empty() {
// FIXME: add bindings for nsCSSValueList
}
}
}