summaryrefslogtreecommitdiff
path: root/src/styleengine.cc
diff options
context:
space:
mode:
authorSebastian Geerken <devnull@localhost>2013-09-23 14:55:21 +0200
committerSebastian Geerken <devnull@localhost>2013-09-23 14:55:21 +0200
commit37507ce8b1188c040afca07390504cd162f5111f (patch)
tree032412baf56c832d6f5ad2d4651e73887b702718 /src/styleengine.cc
parentb033268e6b7c83d3b1ffcb4f8e79769dc8d9c39c (diff)
CSS attribute 'background-repeat'.
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 363e9b02..2cdb6e2c 100644
--- a/src/styleengine.cc
+++ b/src/styleengine.cc
@@ -476,6 +476,9 @@ void StyleEngine::apply (int i, StyleAttrs *attrs, CssPropertyList *props,
}
}
break;
+ case CSS_PROPERTY_BACKGROUND_REPEAT:
+ attrs->backgroundRepeat = (BackgroundRepeat) p->value.intVal;
+ break;
case CSS_PROPERTY_BORDER_COLLAPSE:
attrs->borderCollapse = (BorderCollapse) p->value.intVal;
break;