diff options
author | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-10-31 23:40:38 +0100 |
---|---|---|
committer | Johannes Hofmann <Johannes.Hofmann@gmx.de> | 2008-10-31 23:40:38 +0100 |
commit | bef80608dea6e217b7014470b649bcfab0a9c0f4 (patch) | |
tree | 1f488f0a93a6839e5b4ddcfd968c071919d54081 /src/styleengine.cc | |
parent | 90be8873a5cae7c0d67b4e4d43ca15ca8ef14159 (diff) |
make ol work
Diffstat (limited to 'src/styleengine.cc')
-rw-r--r-- | src/styleengine.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/styleengine.cc b/src/styleengine.cc index 64f6a4db..e8b9cbe9 100644 --- a/src/styleengine.cc +++ b/src/styleengine.cc @@ -112,6 +112,9 @@ void StyleEngine::apply (StyleAttrs *attrs, CssPropertyList *props) { case CssProperty::CSS_PROPERTY_FONT_WEIGHT: fontAttrs.weight = p->value.weight; break; + case CssProperty::CSS_PROPERTY_LIST_STYLE_TYPE: + attrs->listStyleType = p->value.listStyleType; + break; case CssProperty::CSS_PROPERTY_TEXT_DECORATION: attrs->textDecoration |= p->value.textDecoration; break; |