From b07bae94e84e7f1d6e12fd697ceba7222d7250fa Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Sun, 8 Jul 2012 10:45:55 +0100 Subject: HTMLInputElement: Initial support and test enabling. Some TODOs left --- src/html/html_document.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/html/html_document.c') diff --git a/src/html/html_document.c b/src/html/html_document.c index 217e582..739477f 100644 --- a/src/html/html_document.c +++ b/src/html/html_document.c @@ -17,6 +17,8 @@ #include "html/html_title_element.h" #include "html/html_meta_element.h" #include "html/html_form_element.h" +#include "html/html_button_element.h" +#include "html/html_input_element.h" #include "core/string.h" #include "utils/namespace.h" @@ -189,6 +191,16 @@ _dom_html_document_create_element_internal(dom_html_document *html, (dom_html_link_element **) result); } + if (dom_string_caseless_isequal(tag_name, html->memoised[hds_BUTTON])) { + return _dom_html_button_element_create(html, namespace, prefix, + (dom_html_button_element **) result); + } + + if (dom_string_caseless_isequal(tag_name, html->memoised[hds_INPUT])) { + return _dom_html_input_element_create(html, namespace, prefix, + (dom_html_input_element **) result); + } + return _dom_html_element_create(html, tag_name, namespace, prefix, result); } -- cgit v1.2.3