summaryrefslogtreecommitdiff
path: root/src/styleengine.cc
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-12-08 18:41:23 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2009-12-08 18:41:23 +0100
commit8c95d423cee2fc3a1666f938c8b7bbcbd0355cbc (patch)
treeaddf91332aa71fbe4f93cae995e15b2c784189fa /src/styleengine.cc
parentdd1fe82d94986ca9aea49c803304ca9355cdcbf2 (diff)
add support for CSS property list-style-position
Diffstat (limited to 'src/styleengine.cc')
-rw-r--r--src/styleengine.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/styleengine.cc b/src/styleengine.cc
index 5472f3b6..c5d44906 100644
--- a/src/styleengine.cc
+++ b/src/styleengine.cc
@@ -414,6 +414,9 @@ void StyleEngine::apply (StyleAttrs *attrs, CssPropertyList *props) {
case CSS_PROPERTY_DISPLAY:
attrs->display = (DisplayType) p->value.intVal;
break;
+ case CSS_PROPERTY_LIST_STYLE_POSITION:
+ attrs->listStylePosition = (ListStylePosition) p->value.intVal;
+ break;
case CSS_PROPERTY_LIST_STYLE_TYPE:
attrs->listStyleType = (ListStyleType) p->value.intVal;
break;