aboutsummaryrefslogtreecommitdiff
path: root/src/styleengine.cc
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-12-04 18:04:14 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-12-04 18:04:14 +0100
commit5b731bd8a0147e6ff9f2a69339312a9a1e08ae2e (patch)
tree1a3a7df143137b599b83ed36cf45769f1cc2f7fe /src/styleengine.cc
parent8065034cc6d7dec172b09714dc9383c425cd4448 (diff)
hook up <style>...</style> parsing
Diffstat (limited to 'src/styleengine.cc')
-rw-r--r--src/styleengine.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/styleengine.cc b/src/styleengine.cc
index 09a90866..0bb559b6 100644
--- a/src/styleengine.cc
+++ b/src/styleengine.cc
@@ -361,3 +361,9 @@ Style * StyleEngine::style0 (CssPropertyList *nonCssProperties) {
return stack->getRef (stack->size () - 1)->style;
}
+
+void StyleEngine::parse (const char *buf, int buflen,
+ int order_count, CssOrigin origin) {
+
+ a_Css_parse (cssContext, buf, buflen, order_count, origin);
+}