summaryrefslogtreecommitdiff
path: root/include/dom/html
diff options
context:
space:
mode:
authorrsk1994 <rsk1coder99@gmail.com>2014-05-14 20:14:31 +0530
committerRupinder Singh Khokhar <rsk1coder99@gmail.com>2014-06-11 04:27:07 +0530
commit7bf86def02f275eac1c1f0c634461e9aed545a14 (patch)
treec1e4837c185ee38a6eb16ce0f4e7c61fa611bcc7 /include/dom/html
parent8e45e8ddbec0eb239f780254d5658160ecb0387c (diff)
downloadlibdom-7bf86def02f275eac1c1f0c634461e9aed545a14.tar.gz
libdom-7bf86def02f275eac1c1f0c634461e9aed545a14.tar.bz2
Including Level2 tests & the Basefont Element , also a minor change in level2 basefontElement test
Diffstat (limited to 'include/dom/html')
-rw-r--r--include/dom/html/html_basefont_element.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/include/dom/html/html_basefont_element.h b/include/dom/html/html_basefont_element.h
index 2e182d5..fa60e0d 100644
--- a/include/dom/html/html_basefont_element.h
+++ b/include/dom/html/html_basefont_element.h
@@ -3,5 +3,32 @@
* Licensed under the MIT License,
* http://www.opensource.org/licenses/mit-license.php
* Copyright 2009 Bo Yang <struggleyb.nku@gmail.com>
+ * Copyright 2014 Rupinder Singh Khokhar <rsk1coder99@gmail.com>
*/
+#ifndef dom_html_base_font_element_h_
+#define dom_html_base_font_element_h_
+#include <stdbool.h>
+#include <dom/core/exceptions.h>
+#include <dom/core/string.h>
+
+typedef struct dom_html_base_font_element dom_html_base_font_element;
+
+dom_exception dom_html_base_font_element_get_size(
+ dom_html_base_font_element *element, int32_t *size);
+
+dom_exception dom_html_base_font_element_set_size(
+ dom_html_base_font_element *element, uint32_t size);
+
+dom_exception dom_html_base_font_element_get_color(
+ dom_html_base_font_element *element, dom_string **color);
+
+dom_exception dom_html_base_font_element_set_color(
+ dom_html_base_font_element *element, dom_string *color);
+
+dom_exception dom_html_base_font_element_get_face(
+ dom_html_base_font_element *element, dom_string **face);
+
+dom_exception dom_html_base_font_element_set_face(
+ dom_html_base_font_element *element, dom_string *face);
+#endif