From 890da96b1b601f622a12a7832c3cb654b146e693 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Sat, 7 Jul 2012 18:12:12 +0100 Subject: HTMLMetaElement: Implement, install, enable tests --- include/dom/dom.h | 1 + include/dom/html/html_meta_element.h | 26 ++++++++++++++++++++++++++ 2 files changed, 27 insertions(+) (limited to 'include') diff --git a/include/dom/dom.h b/include/dom/dom.h index 1c0e908..05ce3e6 100644 --- a/include/dom/dom.h +++ b/include/dom/dom.h @@ -45,6 +45,7 @@ #include #include #include +#include #include /* DOM Events header */ 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 + 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 -- cgit v1.2.3