summaryrefslogtreecommitdiff
path: root/include/dom/html/html_basefont_element.h
diff options
context:
space:
mode:
authorrsk1994 <rsk1coder99@gmail.com>2014-05-14 20:14:31 +0530
committerRupinder Singh Khokhar <rsk1coder99@gmail.com>2014-06-21 17:35:17 +0530
commit2eebfe9785e83b882dfac17c037bfd490cb0bb6a (patch)
tree5ab39891c87a12de5a4eb3ed7176d3cb667f7216 /include/dom/html/html_basefont_element.h
parentead52d37920d6c0286b3d9004f41aed4592f18f3 (diff)
downloadlibdom-2eebfe9785e83b882dfac17c037bfd490cb0bb6a.tar.gz
libdom-2eebfe9785e83b882dfac17c037bfd490cb0bb6a.tar.bz2
Including Level2 tests & the Basefont Element , also a minor change in level2 basefontElement test
Diffstat (limited to 'include/dom/html/html_basefont_element.h')
-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