From 518ac57a9ad7dc02b53611bcddbfd62688494a90 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 --- Makefile | 1 + bindings/hubbub/parser.c | 11 + include/dom/dom.h | 1 + include/dom/html/html_input_element.h | 120 +++++- src/html/Makefile | 4 +- src/html/html_button_element.c | 2 + src/html/html_document.c | 12 + src/html/html_document_strings.h | 16 + src/html/html_input_element.c | 476 ++++++++++++++++++++- src/html/html_input_element.h | 58 ++- .../tests/level1/html/HTMLInputElement01.xml | 44 ++ .../tests/level1/html/HTMLInputElement01.xml.kfail | 44 -- .../tests/level1/html/HTMLInputElement02.xml | 44 ++ .../tests/level1/html/HTMLInputElement02.xml.kfail | 44 -- .../tests/level1/html/HTMLInputElement03.xml | 44 ++ .../tests/level1/html/HTMLInputElement03.xml.kfail | 44 -- .../tests/level1/html/HTMLInputElement04.xml | 44 ++ .../tests/level1/html/HTMLInputElement04.xml.kfail | 44 -- .../tests/level1/html/HTMLInputElement05.xml | 44 ++ .../tests/level1/html/HTMLInputElement05.xml.kfail | 44 -- .../tests/level1/html/HTMLInputElement06.xml | 44 ++ .../tests/level1/html/HTMLInputElement06.xml.kfail | 44 -- .../tests/level1/html/HTMLInputElement07.xml | 44 ++ .../tests/level1/html/HTMLInputElement07.xml.kfail | 44 -- .../tests/level1/html/HTMLInputElement08.xml | 44 ++ .../tests/level1/html/HTMLInputElement08.xml.kfail | 44 -- .../tests/level1/html/HTMLInputElement09.xml | 43 ++ .../tests/level1/html/HTMLInputElement09.xml.kfail | 43 -- .../tests/level1/html/HTMLInputElement10.xml | 44 ++ .../tests/level1/html/HTMLInputElement10.xml.kfail | 44 -- .../tests/level1/html/HTMLInputElement11.xml | 44 ++ .../tests/level1/html/HTMLInputElement11.xml.kfail | 44 -- .../tests/level1/html/HTMLInputElement12.xml | 44 ++ .../tests/level1/html/HTMLInputElement12.xml.kfail | 44 -- .../tests/level1/html/HTMLInputElement14.xml | 44 ++ .../tests/level1/html/HTMLInputElement14.xml.kfail | 44 -- .../tests/level1/html/HTMLInputElement15.xml | 44 ++ .../tests/level1/html/HTMLInputElement15.xml.kfail | 44 -- .../tests/level1/html/HTMLInputElement16.xml | 43 ++ .../tests/level1/html/HTMLInputElement16.xml.kfail | 43 -- .../tests/level1/html/HTMLInputElement17.xml | 43 ++ .../tests/level1/html/HTMLInputElement17.xml.kfail | 43 -- .../tests/level1/html/HTMLInputElement18.xml | 44 ++ .../tests/level1/html/HTMLInputElement18.xml.kfail | 44 -- .../tests/level1/html/HTMLInputElement19.xml | 37 ++ .../tests/level1/html/HTMLInputElement19.xml.kfail | 37 -- .../tests/level1/html/HTMLInputElement20.xml | 37 ++ .../tests/level1/html/HTMLInputElement20.xml.kfail | 37 -- .../tests/level1/html/HTMLInputElement22.xml | 38 ++ .../tests/level1/html/HTMLInputElement22.xml.kfail | 38 -- 50 files changed, 1553 insertions(+), 862 deletions(-) create mode 100644 test/testcases/tests/level1/html/HTMLInputElement01.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement01.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement02.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement02.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement03.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement03.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement04.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement04.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement05.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement05.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement06.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement06.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement07.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement07.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement08.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement08.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement09.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement09.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement10.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement10.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement11.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement11.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement12.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement12.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement14.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement14.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement15.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement15.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement16.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement16.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement17.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement17.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement18.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement18.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement19.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement19.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement20.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement20.xml.kfail create mode 100644 test/testcases/tests/level1/html/HTMLInputElement22.xml delete mode 100644 test/testcases/tests/level1/html/HTMLInputElement22.xml.kfail diff --git a/Makefile b/Makefile index b58f748..1bb3da5 100644 --- a/Makefile +++ b/Makefile @@ -89,6 +89,7 @@ INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_title_element.h INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_meta_element.h INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_form_element.h INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_button_element.h +INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_input_element.h INSTALL_ITEMS := $(INSTALL_ITEMS) /lib/pkgconfig:lib$(COMPONENT).pc.in INSTALL_ITEMS := $(INSTALL_ITEMS) /lib:$(OUTPUT) diff --git a/bindings/hubbub/parser.c b/bindings/hubbub/parser.c index 3ec2366..173d45f 100644 --- a/bindings/hubbub/parser.c +++ b/bindings/hubbub/parser.c @@ -4,6 +4,7 @@ * http://www.opensource.org/licenses/mit-license.php * Copyright 2007 John-Mark Bell * Copyright 2009 Bo Yang + * Copyright 2012 Daniel Silverstone */ #include @@ -24,6 +25,7 @@ #include "html/html_document.h" #include "html/html_button_element.h" +#include "html/html_input_element.h" #include @@ -485,6 +487,15 @@ static hubbub_error form_associate(void *parser, void *form, void *node) "Error in form_associate"); return HUBBUB_UNKNOWN; } + } else if (dom_string_caseless_isequal(ele->name, + doc->memoised[hds_INPUT])) { + err = _dom_html_input_element_set_form( + (dom_html_input_element *)node, form_ele); + if (err != DOM_NO_ERR) { + dom_parser->msg(DOM_MSG_CRITICAL, dom_parser->mctx, + "Error in form_associate"); + return HUBBUB_UNKNOWN; + } } return HUBBUB_OK; diff --git a/include/dom/dom.h b/include/dom/dom.h index 47dacbb..c07231c 100644 --- a/include/dom/dom.h +++ b/include/dom/dom.h @@ -47,6 +47,7 @@ #include #include #include +#include #include /* DOM Events header */ diff --git a/include/dom/html/html_input_element.h b/include/dom/html/html_input_element.h index 2e182d5..60de08e 100644 --- a/include/dom/html/html_input_element.h +++ b/include/dom/html/html_input_element.h @@ -2,6 +2,124 @@ * This file is part of libdom. * Licensed under the MIT License, * http://www.opensource.org/licenses/mit-license.php - * Copyright 2009 Bo Yang + * Copyright 2012 Daniel Silverstone */ +#ifndef dom_html_input_element_h_ +#define dom_html_input_element_h_ + +#include +#include +#include +#include + +typedef struct dom_html_input_element dom_html_input_element; + +dom_exception dom_html_input_element_get_default_value( + dom_html_input_element *input, dom_string **default_value); + +dom_exception dom_html_input_element_set_default_value( + dom_html_input_element *input, dom_string *default_value); + +dom_exception dom_html_input_element_get_default_checked( + dom_html_input_element *input, bool *default_checked); + +dom_exception dom_html_input_element_set_default_checked( + dom_html_input_element *input, bool default_checked); + +dom_exception dom_html_input_element_get_form( + dom_html_input_element *input, dom_html_form_element **form); + +dom_exception dom_html_input_element_get_accept( + dom_html_input_element *input, dom_string **accept); + +dom_exception dom_html_input_element_set_accept( + dom_html_input_element *input, dom_string *accept); + +dom_exception dom_html_input_element_get_access_key( + dom_html_input_element *input, dom_string **access_key); + +dom_exception dom_html_input_element_set_access_key( + dom_html_input_element *input, dom_string *access_key); + +dom_exception dom_html_input_element_get_align( + dom_html_input_element *input, dom_string **align); + +dom_exception dom_html_input_element_set_align( + dom_html_input_element *input, dom_string *align); + +dom_exception dom_html_input_element_get_alt( + dom_html_input_element *input, dom_string **alt); + +dom_exception dom_html_input_element_set_alt( + dom_html_input_element *input, dom_string *alt); + +dom_exception dom_html_input_element_get_checked( + dom_html_input_element *input, bool *checked); + +dom_exception dom_html_input_element_set_checked( + dom_html_input_element *input, bool checked); + +dom_exception dom_html_input_element_get_disabled( + dom_html_input_element *input, bool *disabled); + +dom_exception dom_html_input_element_set_disabled( + dom_html_input_element *input, bool disabled); + +dom_exception dom_html_input_element_get_max_length( + dom_html_input_element *input, unsigned long *max_length); + +dom_exception dom_html_input_element_set_max_length( + dom_html_input_element *input, unsigned long max_length); + +dom_exception dom_html_input_element_get_name( + dom_html_input_element *input, dom_string **name); + +dom_exception dom_html_input_element_set_name( + dom_html_input_element *input, dom_string *name); + +dom_exception dom_html_input_element_get_read_only( + dom_html_input_element *input, bool *read_only); + +dom_exception dom_html_input_element_set_read_only( + dom_html_input_element *input, bool read_only); + +dom_exception dom_html_input_element_get_size( + dom_html_input_element *input, dom_string **size); + +dom_exception dom_html_input_element_set_size( + dom_html_input_element *input, dom_string *size); + +dom_exception dom_html_input_element_get_src( + dom_html_input_element *input, dom_string **src); + +dom_exception dom_html_input_element_set_src( + dom_html_input_element *input, dom_string *src); + +dom_exception dom_html_input_element_get_tab_index( + dom_html_input_element *input, unsigned long *tab_index); + +dom_exception dom_html_input_element_set_tab_index( + dom_html_input_element *input, unsigned long tab_index); + +dom_exception dom_html_input_element_get_type( + dom_html_input_element *input, dom_string **type); + +dom_exception dom_html_input_element_get_use_map( + dom_html_input_element *input, dom_string **use_map); + +dom_exception dom_html_input_element_set_use_map( + dom_html_input_element *input, dom_string *use_map); + +dom_exception dom_html_input_element_get_value( + dom_html_input_element *input, dom_string **value); + +dom_exception dom_html_input_element_set_value( + dom_html_input_element *input, dom_string *value); + +dom_exception dom_html_input_element_blur(dom_html_input_element *ele); +dom_exception dom_html_input_element_focus(dom_html_input_element *ele); +dom_exception dom_html_input_element_select(dom_html_input_element *ele); +dom_exception dom_html_input_element_click(dom_html_input_element *ele); + +#endif diff --git a/src/html/Makefile b/src/html/Makefile index 2210ece..4586239 100644 --- a/src/html/Makefile +++ b/src/html/Makefile @@ -5,10 +5,10 @@ DIR_SOURCES := \ html_link_element.c html_title_element.c html_meta_element.c \ html_base_element.c html_isindex_element.c html_style_element.c \ html_body_element.c html_form_element.c html_select_element.c \ - html_button_element.c + html_button_element.c html_input_element.c UNINMPLEMENTED_SOURCES := html_optgroup_element.c \ - html_option_element.c html_input_element.c html_textarea_element.c \ + html_option_element.c html_textarea_element.c \ html_label_element.c html_fieldset_element.c \ html_legend_element.c html_ulist_element.c html_olist_element.c \ html_dlist_element.c html_directory_element.c html_menu_element.c \ diff --git a/src/html/html_button_element.c b/src/html/html_button_element.c index d914ae3..5d2ba49 100644 --- a/src/html/html_button_element.c +++ b/src/html/html_button_element.c @@ -60,6 +60,8 @@ dom_exception _dom_html_button_element_initialise(struct dom_html_document *doc, dom_string *namespace, dom_string *prefix, struct dom_html_button_element *ele) { + ele->form = NULL; + return _dom_html_element_initialise(doc, &ele->base, doc->memoised[hds_BUTTON], namespace, prefix); 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); } diff --git a/src/html/html_document_strings.h b/src/html/html_document_strings.h index 2f5be32..97a4336 100644 --- a/src/html/html_document_strings.h +++ b/src/html/html_document_strings.h @@ -61,6 +61,22 @@ HTML_DOCUMENT_STRINGS_ACTION(access_key,accesskey) /* HTML_DOCUMENT_STRINGS_ACTION1(name) */ /* HTML_DOCUMENT_STRINGS_ACTION1(type) */ HTML_DOCUMENT_STRINGS_ACTION1(value) +/* Useful attributes used by HTMLInputElement */ +HTML_DOCUMENT_STRINGS_ACTION1(accept) +/* HTML_DOCUMENT_STRINGS_ACTION(access_key,accesskey) */ +HTML_DOCUMENT_STRINGS_ACTION1(align) +HTML_DOCUMENT_STRINGS_ACTION1(alt) +HTML_DOCUMENT_STRINGS_ACTION1(checked) +HTML_DOCUMENT_STRINGS_ACTION1(disabled) +HTML_DOCUMENT_STRINGS_ACTION(max_length,maxlength) +/* HTML_DOCUMENT_STRINGS_ACTION1(name) */ +HTML_DOCUMENT_STRINGS_ACTION(read_only,readonly) +HTML_DOCUMENT_STRINGS_ACTION1(size) +HTML_DOCUMENT_STRINGS_ACTION1(src) +HTML_DOCUMENT_STRINGS_ACTION(tab_index,tabindex) +/* HTML_DOCUMENT_STRINGS_ACTION1(type) */ +HTML_DOCUMENT_STRINGS_ACTION(use_map,usemap) +/* HTML_DOCUMENT_STRINGS_ACTION1(value) */ /* Names for elements which get specialised. */ HTML_DOCUMENT_STRINGS_ACTION1(HTML) HTML_DOCUMENT_STRINGS_ACTION1(HEAD) diff --git a/src/html/html_input_element.c b/src/html/html_input_element.c index 2e182d5..dc5ff21 100644 --- a/src/html/html_input_element.c +++ b/src/html/html_input_element.c @@ -2,6 +2,480 @@ * This file is part of libdom. * Licensed under the MIT License, * http://www.opensource.org/licenses/mit-license.php - * Copyright 2009 Bo Yang + * Copyright 2012 Daniel Silverstone */ +#include +#include + +#include + +#include "html/html_document.h" +#include "html/html_input_element.h" + +#include "core/node.h" +#include "core/attr.h" +#include "utils/utils.h" + +static struct dom_element_protected_vtable _protect_vtable = { + { + DOM_NODE_PROTECT_VTABLE_HTML_INPUT_ELEMENT + }, + DOM_HTML_INPUT_ELEMENT_PROTECT_VTABLE +}; + +/** + * Create a dom_html_input_element object + * + * \param doc The document object + * \param ele The returned element object + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception _dom_html_input_element_create(struct dom_html_document *doc, + dom_string *namespace, dom_string *prefix, + struct dom_html_input_element **ele) +{ + struct dom_node_internal *node; + + *ele = malloc(sizeof(dom_html_input_element)); + if (*ele == NULL) + return DOM_NO_MEM_ERR; + + /* Set up vtables */ + node = (struct dom_node_internal *) *ele; + node->base.vtable = &_dom_html_element_vtable; + node->vtable = &_protect_vtable; + + return _dom_html_input_element_initialise(doc, namespace, prefix, *ele); +} + +/** + * Initialise a dom_html_input_element object + * + * \param doc The document object + * \param ele The dom_html_input_element object + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception _dom_html_input_element_initialise(struct dom_html_document *doc, + dom_string *namespace, dom_string *prefix, + struct dom_html_input_element *ele) +{ + ele->form = NULL; + ele->default_checked = false; + ele->default_checked_set = false; + ele->default_value = NULL; + ele->default_value_set = false; + + return _dom_html_element_initialise(doc, &ele->base, + doc->memoised[hds_INPUT], + namespace, prefix); +} + +/** + * Finalise a dom_html_input_element object + * + * \param ele The dom_html_input_element object + */ +void _dom_html_input_element_finalise(struct dom_html_input_element *ele) +{ + _dom_html_element_finalise(&ele->base); +} + +/** + * Destroy a dom_html_input_element object + * + * \param ele The dom_html_input_element object + */ +void _dom_html_input_element_destroy(struct dom_html_input_element *ele) +{ + _dom_html_input_element_finalise(ele); + free(ele); +} + +/*-----------------------------------------------------------------------*/ +/* Public APIs */ + +/** + * Get the disabled property + * + * \param ele The dom_html_input_element object + * \param disabled The returned status + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_input_element_get_disabled(dom_html_input_element *ele, + bool *disabled) +{ + return dom_html_element_get_bool_property(&ele->base, "disabled", + SLEN("disabled"), disabled); +} + +/** + * Set the disabled property + * + * \param ele The dom_html_input_element object + * \param disabled The status + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_input_element_set_disabled(dom_html_input_element *ele, + bool disabled) +{ + return dom_html_element_set_bool_property(&ele->base, "disabled", + SLEN("disabled"), disabled); +} + +/** + * Get the readOnly property + * + * \param ele The dom_html_input_element object + * \param disabled The returned status + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_input_element_get_read_only(dom_html_input_element *ele, + bool *read_only) +{ + return dom_html_element_get_bool_property(&ele->base, "readonly", + SLEN("readonly"), read_only); +} + +/** + * Set the readOnly property + * + * \param ele The dom_html_input_element object + * \param disabled The status + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_input_element_set_read_only(dom_html_input_element *ele, + bool read_only) +{ + return dom_html_element_set_bool_property(&ele->base, "readonly", + SLEN("readonly"), read_only); +} + +/** + * Get the checked property + * + * \param ele The dom_html_input_element object + * \param disabled The returned status + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_input_element_get_checked(dom_html_input_element *ele, + bool *checked) +{ + return dom_html_element_get_bool_property(&ele->base, "checked", + SLEN("checked"), checked); +} + +/** + * Set the checked property + * + * \param ele The dom_html_input_element object + * \param disabled The status + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_input_element_set_checked(dom_html_input_element *ele, + bool checked) +{ + return dom_html_element_set_bool_property(&ele->base, "checked", + SLEN("checked"), checked); +} + +/** + * Get the defaultValue property + * + * \param ele The dom_html_input_element object + * \param disabled The returned status + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_input_element_get_default_value( + dom_html_input_element *ele, dom_string **default_value) +{ + *default_value = ele->default_value; + + if (*default_value != NULL) + dom_string_ref(*default_value); + + return DOM_NO_ERR; +} + +/** + * Set the defaultValue property + * + * \param ele The dom_html_input_element object + * \param disabled The status + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_input_element_set_default_value( + dom_html_input_element *ele, dom_string *default_value) +{ + if (ele->default_value != NULL) + dom_string_unref(ele->default_value); + + ele->default_value = default_value; + ele->default_value_set = true; + + if (ele->default_value != NULL) + dom_string_ref(ele->default_value); + + return DOM_NO_ERR; +} + +/** + * Get the defaultChecked property + * + * \param ele The dom_html_input_element object + * \param disabled The returned status + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_input_element_get_default_checked( + dom_html_input_element *ele, bool *default_checked) +{ + *default_checked = ele->default_checked; + + return DOM_NO_ERR; +} + +/** + * Set the defaultChecked property + * + * \param ele The dom_html_input_element object + * \param disabled The status + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_input_element_set_default_checked( + dom_html_input_element *ele, bool default_checked) +{ + ele->default_checked = default_checked; + ele->default_checked_set = true; + + return DOM_NO_ERR; +} + +/*------------------------------------------------------------------------*/ +/* The protected virtual functions */ + +/* The virtual function used to parse attribute value, see src/core/element.c + * for detail */ +dom_exception _dom_html_input_element_parse_attribute(dom_element *ele, + dom_string *name, dom_string *value, + dom_string **parsed) +{ + dom_html_input_element *input = (dom_html_input_element *)ele; + dom_html_document *html = (dom_html_document *)(ele->base.owner); + + /** \todo Find some way to do the equiv for default_checked to be + * false instead of true. Some end-tag hook in the binding perhaps? + */ + if (dom_string_caseless_isequal(name, html->memoised[hds_checked])) { + if (input->default_checked_set == false) { + input->default_checked = true; + input->default_checked_set = true; + } + } + + if (dom_string_caseless_isequal(name, html->memoised[hds_value])) { + if (input->default_value_set == false) { + input->default_value = value; + dom_string_ref(value); + input->default_value_set = true; + } + } + + dom_string_ref(value); + *parsed = value; + + return DOM_NO_ERR; +} + +/* The virtual destroy function, see src/core/node.c for detail */ +void _dom_virtual_html_input_element_destroy(dom_node_internal *node) +{ + _dom_html_input_element_destroy((struct dom_html_input_element *) node); +} + +/* The virtual copy function, see src/core/node.c for detail */ +dom_exception _dom_html_input_element_copy(dom_node_internal *old, + dom_node_internal **copy) +{ + return _dom_html_element_copy(old, copy); +} + +/*-----------------------------------------------------------------------*/ +/* API functions */ + +#define SIMPLE_GET(attr) \ + dom_exception dom_html_input_element_get_##attr( \ + dom_html_input_element *element, \ + dom_string **attr) \ + { \ + dom_exception ret; \ + dom_string *_memo_##attr; \ + \ + _memo_##attr = \ + ((struct dom_html_document *) \ + ((struct dom_node_internal *)element)->owner)->\ + memoised[hds_##attr]; \ + \ + ret = dom_element_get_attribute(element, _memo_##attr, attr); \ + \ + return ret; \ + } +#define SIMPLE_SET(attr) \ +dom_exception dom_html_input_element_set_##attr( \ + dom_html_input_element *element, \ + dom_string *attr) \ + { \ + dom_exception ret; \ + dom_string *_memo_##attr; \ + \ + _memo_##attr = \ + ((struct dom_html_document *) \ + ((struct dom_node_internal *)element)->owner)->\ + memoised[hds_##attr]; \ + \ + ret = dom_element_set_attribute(element, _memo_##attr, attr); \ + \ + return ret; \ + } + +#define SIMPLE_GET_SET(attr) SIMPLE_GET(attr) SIMPLE_SET(attr) + +SIMPLE_GET_SET(accept); +SIMPLE_GET_SET(access_key); +SIMPLE_GET_SET(align); +SIMPLE_GET_SET(alt); +SIMPLE_GET_SET(name); +SIMPLE_GET_SET(size); +SIMPLE_GET_SET(src); +SIMPLE_GET(type); +SIMPLE_GET_SET(use_map); +SIMPLE_GET_SET(value); + +dom_exception dom_html_input_element_get_tab_index( + dom_html_input_element *input, unsigned long *tab_index) +{ + return dom_html_element_get_long_property(&input->base, "tabindex", + SLEN("tabindex"), tab_index); +} + +dom_exception dom_html_input_element_set_tab_index( + dom_html_input_element *input, unsigned long tab_index) +{ + return dom_html_element_set_long_property(&input->base, "tabindex", + SLEN("tabindex"), tab_index); +} + +dom_exception dom_html_input_element_get_max_length( + dom_html_input_element *input, unsigned long *max_length) +{ + return dom_html_element_get_long_property(&input->base, "maxlength", + SLEN("maxlength"), max_length); +} + +dom_exception dom_html_input_element_set_max_length( + dom_html_input_element *input, unsigned long max_length) +{ + return dom_html_element_set_long_property(&input->base, "maxlength", + SLEN("maxlength"), max_length); +} + +dom_exception dom_html_input_element_get_form( + dom_html_input_element *input, dom_html_form_element **form) +{ + *form = input->form; + + if (*form != NULL) + dom_node_ref(*form); + + return DOM_NO_ERR; +} + +dom_exception _dom_html_input_element_set_form( + dom_html_input_element *input, dom_html_form_element *form) +{ + if (input->form == form) + return DOM_NO_ERR; + + if (input->form != NULL) + dom_node_unref(input->form); + + input->form = form; + + if (input->form != NULL) + dom_node_ref(input->form); + + return DOM_NO_ERR; +} + +/** + * Blur this control + * + * \param ele The form object + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_input_element_blur(dom_html_input_element *ele) +{ + struct dom_document *doc = dom_node_get_owner(ele); + bool success = false; + assert(doc != NULL); + + /** \todo Is this event (a) default (b) bubbling and (c) cancelable? */ + return _dom_dispatch_generic_event(doc, (dom_event_target *) ele, + (const uint8_t *) "blur", SLEN("blur"), true, + true, &success); +} + +/** + * Focus this control + * + * \param ele The form object + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_input_element_focus(dom_html_input_element *ele) +{ + struct dom_document *doc = dom_node_get_owner(ele); + bool success = false; + assert(doc != NULL); + + /** \todo Is this event (a) default (b) bubbling and (c) cancelable? */ + return _dom_dispatch_generic_event(doc, (dom_event_target *) ele, + (const uint8_t *) "focus", SLEN("focus"), true, + true, &success); +} + +/** + * Select this control + * + * \param ele The form object + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_input_element_select(dom_html_input_element *ele) +{ + struct dom_document *doc = dom_node_get_owner(ele); + bool success = false; + assert(doc != NULL); + + /** \todo Is this event (a) default (b) bubbling and (c) cancelable? */ + return _dom_dispatch_generic_event(doc, (dom_event_target *) ele, + (const uint8_t *) "select", SLEN("select"), true, + true, &success); +} + +/** + * Click this control + * + * \param ele The form object + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_input_element_click(dom_html_input_element *ele) +{ + struct dom_document *doc = dom_node_get_owner(ele); + bool success = false; + assert(doc != NULL); + + /** \todo Is this is meant to check/uncheck boxes, radios etc */ + /** \todo Is this event (a) default (b) bubbling and (c) cancelable? */ + return _dom_dispatch_generic_event(doc, (dom_event_target *) ele, + (const uint8_t *) "click", SLEN("click"), true, + true, &success); +} + diff --git a/src/html/html_input_element.h b/src/html/html_input_element.h index 2e182d5..72c7d51 100644 --- a/src/html/html_input_element.h +++ b/src/html/html_input_element.h @@ -2,6 +2,62 @@ * This file is part of libdom. * Licensed under the MIT License, * http://www.opensource.org/licenses/mit-license.php - * Copyright 2009 Bo Yang + * Copyright 2012 Daniel Silverstone */ +#ifndef dom_internal_html_input_element_h_ +#define dom_internal_html_input_element_h_ + +#include + +#include "html/html_element.h" + +struct dom_html_input_element { + struct dom_html_element base; + /**< The base class */ + struct dom_html_form_element *form; + /**< The form associated with the input */ + bool default_checked; /**< Initial checked value */ + bool default_checked_set; /**< Whether default_checked has been set */ + dom_string *default_value; /**< Initial value */ + bool default_value_set; /**< Whether default_value has been set */ +}; + +/* Create a dom_html_input_element object */ +dom_exception _dom_html_input_element_create(struct dom_html_document *doc, + dom_string *namespace, dom_string *prefix, + struct dom_html_input_element **ele); + +/* Initialise a dom_html_input_element object */ +dom_exception _dom_html_input_element_initialise(struct dom_html_document *doc, + dom_string *namespace, dom_string *prefix, + struct dom_html_input_element *ele); + +/* Finalise a dom_html_input_element object */ +void _dom_html_input_element_finalise(struct dom_html_input_element *ele); + +/* Destroy a dom_html_input_element object */ +void _dom_html_input_element_destroy(struct dom_html_input_element *ele); + +/* The protected virtual functions */ +dom_exception _dom_html_input_element_parse_attribute(dom_element *ele, + dom_string *name, dom_string *value, + dom_string **parsed); +void _dom_virtual_html_input_element_destroy(dom_node_internal *node); +dom_exception _dom_html_input_element_copy(dom_node_internal *old, + dom_node_internal **copy); + +#define DOM_HTML_INPUT_ELEMENT_PROTECT_VTABLE \ + _dom_html_input_element_parse_attribute + +#define DOM_NODE_PROTECT_VTABLE_HTML_INPUT_ELEMENT \ + _dom_virtual_html_input_element_destroy, \ + _dom_html_input_element_copy + +/* Internal function for bindings */ + +dom_exception _dom_html_input_element_set_form( + dom_html_input_element *input, dom_html_form_element *form); + +#endif + diff --git a/test/testcases/tests/level1/html/HTMLInputElement01.xml b/test/testcases/tests/level1/html/HTMLInputElement01.xml new file mode 100644 index 0000000..67df3ec --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement01.xml @@ -0,0 +1,44 @@ + + + + + + + +HTMLInputElement01 +NIST + + The defaultValue attribute represents the HTML value of the attribute + when the type attribute has the value of "Text", "File" or "Password". + + Retrieve the defaultValue attribute of the 1st INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement01.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement01.xml.kfail deleted file mode 100644 index 67df3ec..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement01.xml.kfail +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - -HTMLInputElement01 -NIST - - The defaultValue attribute represents the HTML value of the attribute - when the type attribute has the value of "Text", "File" or "Password". - - Retrieve the defaultValue attribute of the 1st INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement02.xml b/test/testcases/tests/level1/html/HTMLInputElement02.xml new file mode 100644 index 0000000..127337c --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement02.xml @@ -0,0 +1,44 @@ + + + + + + + +HTMLInputElement02 +NIST + + The defaultChecked attribute represents the HTML checked attribute of + the element when the type attribute has the value checkbox or radio. + + Retrieve the defaultValue attribute of the 4th INPUT element and + examine its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement02.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement02.xml.kfail deleted file mode 100644 index 127337c..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement02.xml.kfail +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - -HTMLInputElement02 -NIST - - The defaultChecked attribute represents the HTML checked attribute of - the element when the type attribute has the value checkbox or radio. - - Retrieve the defaultValue attribute of the 4th INPUT element and - examine its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement03.xml b/test/testcases/tests/level1/html/HTMLInputElement03.xml new file mode 100644 index 0000000..93c994f --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement03.xml @@ -0,0 +1,44 @@ + + + + + + + +HTMLInputElement03 +NIST + + The form attribute returns the FORM element containing this control. + + Retrieve the form attribute of the 1st INPUT element and examine its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + +
+ + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement03.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement03.xml.kfail deleted file mode 100644 index 93c994f..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement03.xml.kfail +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - -HTMLInputElement03 -NIST - - The form attribute returns the FORM element containing this control. - - Retrieve the form attribute of the 1st INPUT element and examine its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement04.xml b/test/testcases/tests/level1/html/HTMLInputElement04.xml new file mode 100644 index 0000000..58adad5 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement04.xml @@ -0,0 +1,44 @@ + + + + + + + +HTMLInputElement04 +NIST + + The accept attribute is a comma-seperated list of content types that + a server processing this form will handle correctly. + + Retrieve the accept attribute of the 9th INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement04.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement04.xml.kfail deleted file mode 100644 index 58adad5..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement04.xml.kfail +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - -HTMLInputElement04 -NIST - - The accept attribute is a comma-seperated list of content types that - a server processing this form will handle correctly. - - Retrieve the accept attribute of the 9th INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement05.xml b/test/testcases/tests/level1/html/HTMLInputElement05.xml new file mode 100644 index 0000000..c5d8351 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement05.xml @@ -0,0 +1,44 @@ + + + + + + + +HTMLInputElement05 +NIST + + The accessKey attribute is a single character access key to give access + to the form control. + + Retrieve the accessKey attribute of the 2nd INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement05.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement05.xml.kfail deleted file mode 100644 index c5d8351..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement05.xml.kfail +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - -HTMLInputElement05 -NIST - - The accessKey attribute is a single character access key to give access - to the form control. - - Retrieve the accessKey attribute of the 2nd INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement06.xml b/test/testcases/tests/level1/html/HTMLInputElement06.xml new file mode 100644 index 0000000..6dc9d11 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement06.xml @@ -0,0 +1,44 @@ + + + + + + + +HTMLInputElement06 +NIST + + The align attribute aligns this object(vertically or horizontally) + with respect to the surrounding text. + + Retrieve the align attribute of the 4th INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement06.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement06.xml.kfail deleted file mode 100644 index 6dc9d11..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement06.xml.kfail +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - -HTMLInputElement06 -NIST - - The align attribute aligns this object(vertically or horizontally) - with respect to the surrounding text. - - Retrieve the align attribute of the 4th INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement07.xml b/test/testcases/tests/level1/html/HTMLInputElement07.xml new file mode 100644 index 0000000..8f7e4b7 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement07.xml @@ -0,0 +1,44 @@ + + + + + + + +HTMLInputElement07 +NIST + + The alt attribute alternates text for user agents not rendering the + normal content of this element. + + Retrieve the alt attribute of the 1st INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement07.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement07.xml.kfail deleted file mode 100644 index 8f7e4b7..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement07.xml.kfail +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - -HTMLInputElement07 -NIST - - The alt attribute alternates text for user agents not rendering the - normal content of this element. - - Retrieve the alt attribute of the 1st INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement08.xml b/test/testcases/tests/level1/html/HTMLInputElement08.xml new file mode 100644 index 0000000..3aa3a26 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement08.xml @@ -0,0 +1,44 @@ + + + + + + + +HTMLInputElement08 +NIST + + The checked attribute represents the current state of the corresponding + form control when type has the value Radio or Checkbox. + + Retrieve the accept attribute of the 3rd INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement08.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement08.xml.kfail deleted file mode 100644 index 3aa3a26..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement08.xml.kfail +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - -HTMLInputElement08 -NIST - - The checked attribute represents the current state of the corresponding - form control when type has the value Radio or Checkbox. - - Retrieve the accept attribute of the 3rd INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement09.xml b/test/testcases/tests/level1/html/HTMLInputElement09.xml new file mode 100644 index 0000000..67b1d3b --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement09.xml @@ -0,0 +1,43 @@ + + + + + + + +HTMLInputElement09 +NIST + + The disabled attribute has a TRUE value if it is explicitly set. + + Retrieve the disabled attribute of the 7th INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement09.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement09.xml.kfail deleted file mode 100644 index 67b1d3b..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement09.xml.kfail +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - -HTMLInputElement09 -NIST - - The disabled attribute has a TRUE value if it is explicitly set. - - Retrieve the disabled attribute of the 7th INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement10.xml b/test/testcases/tests/level1/html/HTMLInputElement10.xml new file mode 100644 index 0000000..7f28589 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement10.xml @@ -0,0 +1,44 @@ + + + + + + + +HTMLInputElement10 +NIST + + The maxLength attribute is the maximum number of text characters for text + fields, when type has the value of Text or Password. + + Retrieve the maxLenght attribute of the 1st INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement10.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement10.xml.kfail deleted file mode 100644 index 7f28589..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement10.xml.kfail +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - -HTMLInputElement10 -NIST - - The maxLength attribute is the maximum number of text characters for text - fields, when type has the value of Text or Password. - - Retrieve the maxLenght attribute of the 1st INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement11.xml b/test/testcases/tests/level1/html/HTMLInputElement11.xml new file mode 100644 index 0000000..3113f9a --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement11.xml @@ -0,0 +1,44 @@ + + + + + + + +HTMLInputElement11 +NIST + + The name attribute is the form control or object name when submitted with + a form. + + Retrieve the name attribute of the 1st INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement11.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement11.xml.kfail deleted file mode 100644 index 3113f9a..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement11.xml.kfail +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - -HTMLInputElement11 -NIST - - The name attribute is the form control or object name when submitted with - a form. - - Retrieve the name attribute of the 1st INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement12.xml b/test/testcases/tests/level1/html/HTMLInputElement12.xml new file mode 100644 index 0000000..d4cd099 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement12.xml @@ -0,0 +1,44 @@ + + + + + + + +HTMLInputElement12 +NIST + + The readOnly attribute indicates that this control is read-only when + type has a value of text or password only. + + Retrieve the readOnly attribute of the 1st INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement12.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement12.xml.kfail deleted file mode 100644 index d4cd099..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement12.xml.kfail +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - -HTMLInputElement12 -NIST - - The readOnly attribute indicates that this control is read-only when - type has a value of text or password only. - - Retrieve the readOnly attribute of the 1st INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement14.xml b/test/testcases/tests/level1/html/HTMLInputElement14.xml new file mode 100644 index 0000000..82f022e --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement14.xml @@ -0,0 +1,44 @@ + + + + + + + +HTMLInputElement14 +NIST + + The src attribute specifies the location of the image to decorate the + graphical submit button when the type has the value Image. + + Retrieve the src attribute of the 8th INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement14.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement14.xml.kfail deleted file mode 100644 index 82f022e..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement14.xml.kfail +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - -HTMLInputElement14 -NIST - - The src attribute specifies the location of the image to decorate the - graphical submit button when the type has the value Image. - - Retrieve the src attribute of the 8th INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement15.xml b/test/testcases/tests/level1/html/HTMLInputElement15.xml new file mode 100644 index 0000000..a9a3c78 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement15.xml @@ -0,0 +1,44 @@ + + + + + + + +HTMLInputElement15 +NIST + + The tabIndex attribute is an index that represents the elements position + in the tabbing order. + + Retrieve the tabIndex attribute of the 3rd INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement15.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement15.xml.kfail deleted file mode 100644 index a9a3c78..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement15.xml.kfail +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - -HTMLInputElement15 -NIST - - The tabIndex attribute is an index that represents the elements position - in the tabbing order. - - Retrieve the tabIndex attribute of the 3rd INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement16.xml b/test/testcases/tests/level1/html/HTMLInputElement16.xml new file mode 100644 index 0000000..119a8b0 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement16.xml @@ -0,0 +1,43 @@ + + + + + + + +HTMLInputElement16 +NIST + + The type attribute is the type of control created. + + Retrieve the type attribute of the 1st INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement16.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement16.xml.kfail deleted file mode 100644 index 119a8b0..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement16.xml.kfail +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - -HTMLInputElement16 -NIST - - The type attribute is the type of control created. - - Retrieve the type attribute of the 1st INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement17.xml b/test/testcases/tests/level1/html/HTMLInputElement17.xml new file mode 100644 index 0000000..163eee4 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement17.xml @@ -0,0 +1,43 @@ + + + + + + + +HTMLInputElement17 +NIST + + The useMap attribute specifies the use of the client-side image map. + + Retrieve the useMap attribute of the 8th INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement17.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement17.xml.kfail deleted file mode 100644 index 163eee4..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement17.xml.kfail +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - -HTMLInputElement17 -NIST - - The useMap attribute specifies the use of the client-side image map. - - Retrieve the useMap attribute of the 8th INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement18.xml b/test/testcases/tests/level1/html/HTMLInputElement18.xml new file mode 100644 index 0000000..85aca78 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement18.xml @@ -0,0 +1,44 @@ + + + + + + + +HTMLInputElement18 +NIST + + The value attribute is the current content of the corresponding form + control when the type attribute has the value Text, File or Password. + + Retrieve the value attribute of the 2nd INPUT element and examine + its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement18.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement18.xml.kfail deleted file mode 100644 index 85aca78..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement18.xml.kfail +++ /dev/null @@ -1,44 +0,0 @@ - - - - - - - -HTMLInputElement18 -NIST - - The value attribute is the current content of the corresponding form - control when the type attribute has the value Text, File or Password. - - Retrieve the value attribute of the 2nd INPUT element and examine - its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement19.xml b/test/testcases/tests/level1/html/HTMLInputElement19.xml new file mode 100644 index 0000000..ad4a00c --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement19.xml @@ -0,0 +1,37 @@ + + + + + + + +HTMLInputElement19 +Curt Arnold + +HTMLInputElement.blur should surrender input focus. + +2004-03-18 + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement19.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement19.xml.kfail deleted file mode 100644 index ad4a00c..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement19.xml.kfail +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - -HTMLInputElement19 -Curt Arnold - -HTMLInputElement.blur should surrender input focus. - -2004-03-18 - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement20.xml b/test/testcases/tests/level1/html/HTMLInputElement20.xml new file mode 100644 index 0000000..141473f --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement20.xml @@ -0,0 +1,37 @@ + + + + + + + +HTMLInputElement20 +Curt Arnold + +HTMLInputElement.focus should capture input focus. + +2004-03-18 + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLInputElement20.xml.kfail b/test/testcases/tests/level1/html/HTMLInputElement20.xml.kfail deleted file mode 100644 index 141473f..0000000 --- a/test/testcases/tests/level1/html/HTMLInputElement20.xml.kfail +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - -HTMLInputElement20 -Curt Arnold - -HTMLInputElement.focus should capture input focus. - -2004-03-18 - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLInputElement22.xml b/test/testcases/tests/level1/html/HTMLInputElement22.xml new file mode 100644 index 0000000..0d65890 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLInputElement22.xml @@ -0,0 +1,38 @@ + + + + + + + +HTMLInputElement22 +Curt Arnold + +HTMLInputElement.select should select the contents of a text area. + +2004-03-18 + + + + + + + + + + + - -- cgit v1.2.3