summaryrefslogtreecommitdiff
path: root/src/core/element.h
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2012-03-24 15:03:10 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2012-03-24 15:03:10 +0000
commit79e4b4870b4cfa717ec88468ae5836cb92497201 (patch)
tree9720c568aeda932a1de5bdfcf0246eb64d0851bf /src/core/element.h
parent2eea8e30c3e5b2bdfc4abc19e2e94c0f795ceb6d (diff)
downloadlibdom-79e4b4870b4cfa717ec88468ae5836cb92497201.tar.gz
libdom-79e4b4870b4cfa717ec88468ae5836cb92497201.tar.bz2
Implement the element class API for libcss, except for actually making the array of lwc_strings.
svn path=/trunk/libdom/; revision=13595
Diffstat (limited to 'src/core/element.h')
-rw-r--r--src/core/element.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/element.h b/src/core/element.h
index 34f4167..1cdad71 100644
--- a/src/core/element.h
+++ b/src/core/element.h
@@ -36,6 +36,9 @@ struct dom_element {
dom_string *id_name; /**< The id attribute's name */
struct dom_type_info *schema_type_info; /**< Type information */
+
+ lwc_string **classes;
+ uint32_t n_classes;
};
dom_exception _dom_element_create(struct dom_document *doc,