summaryrefslogtreecommitdiff
path: root/include/dom/html
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2012-07-07 18:12:12 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2012-07-07 18:12:12 +0100
commit890da96b1b601f622a12a7832c3cb654b146e693 (patch)
tree61883294ab39916d33ad364e0d6dd74b4a5999b7 /include/dom/html
parent9c7a1bb6872159035fd6b4640cf9ec62b8630b54 (diff)
downloadlibdom-890da96b1b601f622a12a7832c3cb654b146e693.tar.gz
libdom-890da96b1b601f622a12a7832c3cb654b146e693.tar.bz2
HTMLMetaElement: Implement, install, enable tests
Diffstat (limited to 'include/dom/html')
-rw-r--r--include/dom/html/html_meta_element.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/include/dom/html/html_meta_element.h b/include/dom/html/html_meta_element.h
index 8ceb459..b9898f1 100644
--- a/include/dom/html/html_meta_element.h
+++ b/include/dom/html/html_meta_element.h
@@ -8,7 +8,33 @@
#ifndef dom_html_meta_element_h_
#define dom_html_meta_element_h_
+#include <dom/core/string.h>
+
typedef struct dom_html_meta_element dom_html_meta_element;
+dom_exception dom_html_meta_element_get_content(dom_html_meta_element *ele,
+ dom_string **content);
+
+dom_exception dom_html_meta_element_set_content(dom_html_meta_element *ele,
+ dom_string *content);
+
+dom_exception dom_html_meta_element_get_http_equiv(dom_html_meta_element *ele,
+ dom_string **http_equiv);
+
+dom_exception dom_html_meta_element_set_http_equiv(dom_html_meta_element *ele,
+ dom_string *http_equiv);
+
+dom_exception dom_html_meta_element_get_name(dom_html_meta_element *ele,
+ dom_string **name);
+
+dom_exception dom_html_meta_element_set_name(dom_html_meta_element *ele,
+ dom_string *name);
+
+dom_exception dom_html_meta_element_get_scheme(dom_html_meta_element *ele,
+ dom_string **scheme);
+
+dom_exception dom_html_meta_element_set_scheme(dom_html_meta_element *ele,
+ dom_string *scheme);
+
#endif