From ead52d37920d6c0286b3d9004f41aed4592f18f3 Mon Sep 17 00:00:00 2001 From: rsk1994 Date: Wed, 14 May 2014 05:32:09 +0530 Subject: Anchor element --- Makefile | 1 + include/dom/dom.h | 1 + include/dom/html/html_anchor_element.h | 93 +++++++++ src/html/Makefile | 5 +- src/html/html_anchor_element.c | 220 +++++++++++++++++++++ src/html/html_anchor_element.h | 45 +++++ src/html/html_document.c | 4 + src/html/html_document_strings.h | 2 + test/DOMTSHandler.pm | 1 + .../tests/level1/html/HTMLAnchorElement01.xml | 43 ++++ .../level1/html/HTMLAnchorElement01.xml.notimpl | 43 ---- .../tests/level1/html/HTMLAnchorElement02.xml | 43 ++++ .../level1/html/HTMLAnchorElement02.xml.notimpl | 43 ---- .../tests/level1/html/HTMLAnchorElement03.xml | 43 ++++ .../level1/html/HTMLAnchorElement03.xml.notimpl | 43 ---- .../tests/level1/html/HTMLAnchorElement04.xml | 41 ++++ .../level1/html/HTMLAnchorElement04.xml.notimpl | 41 ---- .../tests/level1/html/HTMLAnchorElement05.xml | 42 ++++ .../level1/html/HTMLAnchorElement05.xml.notimpl | 42 ---- .../tests/level1/html/HTMLAnchorElement06.xml | 42 ++++ .../level1/html/HTMLAnchorElement06.xml.notimpl | 42 ---- .../tests/level1/html/HTMLAnchorElement07.xml | 42 ++++ .../level1/html/HTMLAnchorElement07.xml.notimpl | 42 ---- .../tests/level1/html/HTMLAnchorElement08.xml | 42 ++++ .../level1/html/HTMLAnchorElement08.xml.notimpl | 42 ---- .../tests/level1/html/HTMLAnchorElement09.xml | 42 ++++ .../level1/html/HTMLAnchorElement09.xml.notimpl | 42 ---- .../tests/level1/html/HTMLAnchorElement10.xml | 43 ++++ .../level1/html/HTMLAnchorElement10.xml.notimpl | 43 ---- .../tests/level1/html/HTMLAnchorElement11.xml | 42 ++++ .../level1/html/HTMLAnchorElement11.xml.notimpl | 42 ---- .../tests/level1/html/HTMLAnchorElement12.xml | 42 ++++ .../level1/html/HTMLAnchorElement12.xml.notimpl | 42 ---- .../tests/level1/html/HTMLAnchorElement13.xml | 37 ++++ .../level1/html/HTMLAnchorElement13.xml.notimpl | 37 ---- .../tests/level1/html/HTMLAnchorElement14.xml | 37 ++++ .../level1/html/HTMLAnchorElement14.xml.notimpl | 37 ---- 37 files changed, 950 insertions(+), 584 deletions(-) create mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement01.xml delete mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement01.xml.notimpl create mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement02.xml delete mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement02.xml.notimpl create mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement03.xml delete mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement03.xml.notimpl create mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement04.xml delete mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement04.xml.notimpl create mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement05.xml delete mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement05.xml.notimpl create mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement06.xml delete mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement06.xml.notimpl create mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement07.xml delete mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement07.xml.notimpl create mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement08.xml delete mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement08.xml.notimpl create mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement09.xml delete mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement09.xml.notimpl create mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement10.xml delete mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement10.xml.notimpl create mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement11.xml delete mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement11.xml.notimpl create mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement12.xml delete mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement12.xml.notimpl create mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement13.xml delete mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement13.xml.notimpl create mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement14.xml delete mode 100644 test/testcases/tests/level1/html/HTMLAnchorElement14.xml.notimpl diff --git a/Makefile b/Makefile index 0495b3a..2f9a815 100644 --- a/Makefile +++ b/Makefile @@ -114,6 +114,7 @@ INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_olist_element.h INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_li_element.h INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_font_element.h INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_mod_element.h +INSTALL_ITEMS := $(INSTALL_ITEMS) $(I):$(Is)/html_anchor_element.h INSTALL_ITEMS := $(INSTALL_ITEMS) /$(LIBDIR)/pkgconfig:lib$(COMPONENT).pc.in INSTALL_ITEMS := $(INSTALL_ITEMS) /$(LIBDIR):$(OUTPUT) diff --git a/include/dom/dom.h b/include/dom/dom.h index 3dabeec..f243bec 100644 --- a/include/dom/dom.h +++ b/include/dom/dom.h @@ -73,6 +73,7 @@ #include #include #include +#include /* DOM Events header */ #include diff --git a/include/dom/html/html_anchor_element.h b/include/dom/html/html_anchor_element.h index 2e182d5..5d08e75 100644 --- a/include/dom/html/html_anchor_element.h +++ b/include/dom/html/html_anchor_element.h @@ -3,5 +3,98 @@ * Licensed under the MIT License, * http://www.opensource.org/licenses/mit-license.php * Copyright 2009 Bo Yang + * Copyright 2014 Rupinder Singh Khokhar */ +#ifndef dom_html_anchor_element_h_ +#define dom_html_anchor_element_h_ + +#include +#include +#include + +typedef struct dom_html_anchor_element dom_html_anchor_element; + + +dom_exception dom_html_anchor_element_get_access_key( + dom_html_anchor_element *anchor, dom_string **access_key); + +dom_exception dom_html_anchor_element_set_access_key( + dom_html_anchor_element *anchor, dom_string *access_key); + +dom_exception dom_html_anchor_element_get_charset( + dom_html_anchor_element *anchor, dom_string **charset); + +dom_exception dom_html_anchor_element_set_charset( + dom_html_anchor_element *anchor, dom_string *charset); + +dom_exception dom_html_anchor_element_get_coords( + dom_html_anchor_element *anchor, dom_string **coords); + +dom_exception dom_html_anchor_element_set_coords( + dom_html_anchor_element *anchor, dom_string *coords); + +dom_exception dom_html_anchor_element_get_href( + dom_html_anchor_element *anchor, dom_string **href); + +dom_exception dom_html_anchor_element_set_href( + dom_html_anchor_element *anchor, dom_string *href); + +dom_exception dom_html_anchor_element_get_hreflang( + dom_html_anchor_element *anchor, dom_string **hreflang); + +dom_exception dom_html_anchor_element_set_hreflang( + dom_html_anchor_element *anchor, dom_string *hreflang); + +dom_exception dom_html_anchor_element_get_name( + dom_html_anchor_element *anchor, dom_string **name); + +dom_exception dom_html_anchor_element_set_name( + dom_html_anchor_element *anchor, dom_string *name); + +dom_exception dom_html_anchor_element_get_rel( + dom_html_anchor_element *anchor, dom_string **rel); + +dom_exception dom_html_anchor_element_set_rel( + dom_html_anchor_element *anchor, dom_string *rel); + +dom_exception dom_html_anchor_element_get_rev( + dom_html_anchor_element *anchor, dom_string **rev); + +dom_exception dom_html_anchor_element_set_rev( + dom_html_anchor_element *anchor, dom_string *rev); + +dom_exception dom_html_anchor_element_get_hreflang( + dom_html_anchor_element *anchor, dom_string **hreflang); + +dom_exception dom_html_anchor_element_set_hreflang( + dom_html_anchor_element *anchor, dom_string *hreflang); + +dom_exception dom_html_anchor_element_get_shape( + dom_html_anchor_element *anchor, dom_string **shape); + +dom_exception dom_html_anchor_element_set_shape( + dom_html_anchor_element *anchor, dom_string *shape); + +dom_exception dom_html_anchor_element_get_target( + dom_html_anchor_element *anchor, dom_string **target); + +dom_exception dom_html_anchor_element_set_target( + dom_html_anchor_element *anchor, dom_string *target); + +dom_exception dom_html_anchor_element_get_type( + dom_html_anchor_element *anchor, dom_string **type); + +dom_exception dom_html_anchor_element_set_type( + dom_html_anchor_element *anchor, dom_string *type); + +dom_exception dom_html_anchor_element_get_tab_index( + dom_html_anchor_element *anchor, int32_t *tab_index); + +dom_exception dom_html_anchor_element_set_tab_index( + dom_html_anchor_element *anchor, uint32_t tab_index); + +dom_exception dom_html_anchor_element_blur(dom_html_anchor_element *ele); +dom_exception dom_html_anchor_element_focus(dom_html_anchor_element *ele); + +#endif diff --git a/src/html/Makefile b/src/html/Makefile index 7711479..f993e06 100644 --- a/src/html/Makefile +++ b/src/html/Makefile @@ -12,11 +12,10 @@ DIR_SOURCES := \ html_paragraph_element.c html_heading_element.c html_quote_element.c \ html_pre_element.c html_br_element.c html_label_element.c \ html_ulist_element.c html_olist_element.c html_li_element.c \ - html_font_element.c html_mod_element.c + html_font_element.c html_mod_element.c html_anchor_element.c UNINMPLEMENTED_SOURCES := \ - html_basefont_element.c \ - html_anchor_element.c html_image_element.c html_object_element.c \ + html_basefont_element.c html_image_element.c html_object_element.c \ html_param_element.c html_applet_element.c html_map_element.c \ html_area_element.c html_script_element.c html_table_element.c \ html_tablecaption_element.c html_tablecol_element.c html_tablesection_element.c \ diff --git a/src/html/html_anchor_element.c b/src/html/html_anchor_element.c index 2e182d5..a215900 100644 --- a/src/html/html_anchor_element.c +++ b/src/html/html_anchor_element.c @@ -3,5 +3,225 @@ * Licensed under the MIT License, * http://www.opensource.org/licenses/mit-license.php * Copyright 2009 Bo Yang + * Copyright 2014 Rupinder Singh Khokhar */ +#include +#include + +#include + +#include "html/html_document.h" +#include "html/html_anchor_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_ANCHOR_ELEMENT + }, + DOM_HTML_ANCHOR_ELEMENT_PROTECT_VTABLE +}; + +/** + * Create a dom_html_anchor_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_anchor_element_create(struct dom_html_document *doc, + dom_string *namespace, dom_string *prefix, + struct dom_html_anchor_element **ele) +{ + struct dom_node_internal *node; + + *ele = malloc(sizeof(dom_html_anchor_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_anchor_element_initialise(doc, namespace, prefix, *ele); +} + +/** + * Initialise a dom_html_anchor_element object + * + * \param doc The document object + * \param ele The dom_html_anchor_element object + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception _dom_html_anchor_element_initialise(struct dom_html_document *doc, + dom_string *namespace, dom_string *prefix, + struct dom_html_anchor_element *ele) +{ + return _dom_html_element_initialise(doc, &ele->base, + doc->memoised[hds_A], + namespace, prefix); +} + +/** + * Finalise a dom_html_anchor_element object + * + * \param ele The dom_html_anchor_element object + */ +void _dom_html_anchor_element_finalise(struct dom_html_anchor_element *ele) +{ + _dom_html_element_finalise(&ele->base); +} + +/** + * Destroy a dom_html_anchor_element object + * + * \param ele The dom_html_anchor_element object + */ +void _dom_html_anchor_element_destroy(struct dom_html_anchor_element *ele) +{ + _dom_html_anchor_element_finalise(ele); + free(ele); +} + +/*------------------------------------------------------------------------*/ +/* The protected virtual functions */ + +/* The virtual function used to parse attribute value, see src/core/element.c + * for detail */ +dom_exception _dom_html_anchor_element_parse_attribute(dom_element *ele, + dom_string *name, dom_string *value, + dom_string **parsed) +{ + UNUSED(ele); + UNUSED(name); + + 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_anchor_element_destroy(dom_node_internal *node) +{ + _dom_html_anchor_element_destroy((struct dom_html_anchor_element *) node); +} + +/* The virtual copy function, see src/core/node.c for detail */ +dom_exception _dom_html_anchor_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_anchor_element_get_##attr( \ + dom_html_anchor_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_anchor_element_set_##attr( \ + dom_html_anchor_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(access_key); +SIMPLE_GET_SET(charset); +SIMPLE_GET_SET(coords); +SIMPLE_GET_SET(href); +SIMPLE_GET_SET(hreflang); +SIMPLE_GET_SET(name); +SIMPLE_GET_SET(rel); +SIMPLE_GET_SET(rev); +SIMPLE_GET_SET(shape); +SIMPLE_GET_SET(target); +SIMPLE_GET_SET(type); + +dom_exception dom_html_anchor_element_get_tab_index( + dom_html_anchor_element *anchor, int32_t *tab_index) +{ + return dom_html_element_get_int32_t_property(&anchor->base, "tabindex", + SLEN("tabindex"), tab_index); +} + +dom_exception dom_html_anchor_element_set_tab_index( + dom_html_anchor_element *anchor, uint32_t tab_index) +{ + return dom_html_element_set_int32_t_property(&anchor->base, "tabindex", + SLEN("tabindex"), tab_index); +} + + +/** + * Blur this control + * + * \param ele The form object + * \return DOM_NO_ERR on success, appropriate dom_exception on failure. + */ +dom_exception dom_html_anchor_element_blur(dom_html_anchor_element *ele) +{ + struct dom_html_document *doc = + (dom_html_document *) 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((dom_document *) doc, + (dom_event_target *) ele, + doc->memoised[hds_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_anchor_element_focus(dom_html_anchor_element *ele) +{ + struct dom_html_document *doc = + (dom_html_document *) 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((dom_document *)doc, + (dom_event_target *) ele, + doc->memoised[hds_focus], true, + true, &success); +} + diff --git a/src/html/html_anchor_element.h b/src/html/html_anchor_element.h index 2e182d5..a9f5b5b 100644 --- a/src/html/html_anchor_element.h +++ b/src/html/html_anchor_element.h @@ -3,5 +3,50 @@ * Licensed under the MIT License, * http://www.opensource.org/licenses/mit-license.php * Copyright 2009 Bo Yang + * Copyright 2014 Rupinder Singh Khokhar */ +#ifndef dom_internal_html_anchor_element_h_ +#define dom_internal_html_anchor_element_h_ + +#include + +#include "html/html_element.h" + +struct dom_html_anchor_element { + struct dom_html_element base; + /**< The base class */ +}; + +/* Create a dom_html_anchor_element object */ +dom_exception _dom_html_anchor_element_create(struct dom_html_document *doc, + dom_string *namespace, dom_string *prefix, + struct dom_html_anchor_element **ele); + +/* Initialise a dom_html_anchor_element object */ +dom_exception _dom_html_anchor_element_initialise(struct dom_html_document *doc, + dom_string *namespace, dom_string *prefix, + struct dom_html_anchor_element *ele); + +/* Finalise a dom_html_anchor_element object */ +void _dom_html_anchor_element_finalise(struct dom_html_anchor_element *ele); + +/* Destroy a dom_html_anchor_element object */ +void _dom_html_anchor_element_destroy(struct dom_html_anchor_element *ele); + +/* The protected virtual functions */ +dom_exception _dom_html_anchor_element_parse_attribute(dom_element *ele, + dom_string *name, dom_string *value, + dom_string **parsed); +void _dom_virtual_html_anchor_element_destroy(dom_node_internal *node); +dom_exception _dom_html_anchor_element_copy(dom_node_internal *old, + dom_node_internal **copy); + +#define DOM_HTML_ANCHOR_ELEMENT_PROTECT_VTABLE \ + _dom_html_anchor_element_parse_attribute + +#define DOM_NODE_PROTECT_VTABLE_HTML_ANCHOR_ELEMENT \ + _dom_virtual_html_anchor_element_destroy, \ + _dom_html_anchor_element_copy + +#endif diff --git a/src/html/html_document.c b/src/html/html_document.c index c8fd11e..b0ab43a 100644 --- a/src/html/html_document.c +++ b/src/html/html_document.c @@ -41,6 +41,7 @@ #include "html/html_li_element.h" #include "html/html_font_element.h" #include "html/html_mod_element.h" +#include "html/html_anchor_element.h" #include "core/attr.h" #include "core/string.h" @@ -295,6 +296,9 @@ _dom_html_document_create_element_internal(dom_html_document *html, dom_string_caseless_isequal(tag_name, html->memoised[hds_INS])) { exc = _dom_html_mod_element_create(html, tag_name, namespace, prefix, (dom_html_mod_element **) result); + } else if (dom_string_caseless_isequal(tag_name, html->memoised[hds_A])) { + exc = _dom_html_anchor_element_create(html, namespace, prefix, + (dom_html_anchor_element **) result); } else { exc = _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 73b7bab..73cb64c 100644 --- a/src/html/html_document_strings.h +++ b/src/html/html_document_strings.h @@ -87,6 +87,8 @@ HTML_DOCUMENT_STRINGS_ACTION1(compact) HTML_DOCUMENT_STRINGS_ACTION1(cite) HTML_DOCUMENT_STRINGS_ACTION1(color) HTML_DOCUMENT_STRINGS_ACTION1(face) +HTML_DOCUMENT_STRINGS_ACTION1(coords) +HTML_DOCUMENT_STRINGS_ACTION1(shape) HTML_DOCUMENT_STRINGS_ACTION(tab_index,tabindex) HTML_DOCUMENT_STRINGS_ACTION(html_for,for) HTML_DOCUMENT_STRINGS_ACTION(date_time,datetime) diff --git a/test/DOMTSHandler.pm b/test/DOMTSHandler.pm index f1ed1d4..645e841 100644 --- a/test/DOMTSHandler.pm +++ b/test/DOMTSHandler.pm @@ -42,6 +42,7 @@ our %special_type = ( HTMLFormElement => "dom_html_form_element *", CharacterData => "dom_characterdata *", CDATASection => "dom_cdata_section *", + HTMLAnchorElement => "dom_html_anchor_element *", ); our %special_prefix = ( DOMString => "dom_string", diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement01.xml b/test/testcases/tests/level1/html/HTMLAnchorElement01.xml new file mode 100644 index 0000000..a076a18 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLAnchorElement01.xml @@ -0,0 +1,43 @@ + + + + + + + +HTMLAnchorElement01 +NIST + + The accessKey attribute is a single character access key to give + access to the form control. + + Retrieve the accessKey attribute and examine its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement01.xml.notimpl b/test/testcases/tests/level1/html/HTMLAnchorElement01.xml.notimpl deleted file mode 100644 index a076a18..0000000 --- a/test/testcases/tests/level1/html/HTMLAnchorElement01.xml.notimpl +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - -HTMLAnchorElement01 -NIST - - The accessKey attribute is a single character access key to give - access to the form control. - - Retrieve the accessKey attribute and examine its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement02.xml b/test/testcases/tests/level1/html/HTMLAnchorElement02.xml new file mode 100644 index 0000000..247a8cb --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLAnchorElement02.xml @@ -0,0 +1,43 @@ + + + + + + + +HTMLAnchorElement02 +NIST + + The charset attribute indicates the character encoding of the linked + resource. + + Retrieve the charset attribute and examine its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement02.xml.notimpl b/test/testcases/tests/level1/html/HTMLAnchorElement02.xml.notimpl deleted file mode 100644 index 247a8cb..0000000 --- a/test/testcases/tests/level1/html/HTMLAnchorElement02.xml.notimpl +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - -HTMLAnchorElement02 -NIST - - The charset attribute indicates the character encoding of the linked - resource. - - Retrieve the charset attribute and examine its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement03.xml b/test/testcases/tests/level1/html/HTMLAnchorElement03.xml new file mode 100644 index 0000000..07a421c --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLAnchorElement03.xml @@ -0,0 +1,43 @@ + + + + + + + +HTMLAnchorElement03 +NIST + + The coords attribute is a comma-seperated list of lengths, defining + an active region geometry. + + Retrieve the coords attribute and examine its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement03.xml.notimpl b/test/testcases/tests/level1/html/HTMLAnchorElement03.xml.notimpl deleted file mode 100644 index 07a421c..0000000 --- a/test/testcases/tests/level1/html/HTMLAnchorElement03.xml.notimpl +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - -HTMLAnchorElement03 -NIST - - The coords attribute is a comma-seperated list of lengths, defining - an active region geometry. - - Retrieve the coords attribute and examine its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement04.xml b/test/testcases/tests/level1/html/HTMLAnchorElement04.xml new file mode 100644 index 0000000..7b961c4 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLAnchorElement04.xml @@ -0,0 +1,41 @@ + + + + + + + HTMLAnchorElement04 + NIST + + The href attribute contains the URL of the linked resource. + + Retrieve the href attribute and examine its value. + + Mary Brady + 2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement04.xml.notimpl b/test/testcases/tests/level1/html/HTMLAnchorElement04.xml.notimpl deleted file mode 100644 index 7b961c4..0000000 --- a/test/testcases/tests/level1/html/HTMLAnchorElement04.xml.notimpl +++ /dev/null @@ -1,41 +0,0 @@ - - - - - - - HTMLAnchorElement04 - NIST - - The href attribute contains the URL of the linked resource. - - Retrieve the href attribute and examine its value. - - Mary Brady - 2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement05.xml b/test/testcases/tests/level1/html/HTMLAnchorElement05.xml new file mode 100644 index 0000000..0329515 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLAnchorElement05.xml @@ -0,0 +1,42 @@ + + + + + + + +HTMLAnchorElement05 +NIST + + The hreflang attribute contains the language code of the linked resource. + + Retrieve the hreflang attribute and examine its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement05.xml.notimpl b/test/testcases/tests/level1/html/HTMLAnchorElement05.xml.notimpl deleted file mode 100644 index 0329515..0000000 --- a/test/testcases/tests/level1/html/HTMLAnchorElement05.xml.notimpl +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - -HTMLAnchorElement05 -NIST - - The hreflang attribute contains the language code of the linked resource. - - Retrieve the hreflang attribute and examine its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement06.xml b/test/testcases/tests/level1/html/HTMLAnchorElement06.xml new file mode 100644 index 0000000..ad768fa --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLAnchorElement06.xml @@ -0,0 +1,42 @@ + + + + + + + +HTMLAnchorElement06 +NIST + + The name attribute contains the anchor name. + + Retrieve the name attribute and examine its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement06.xml.notimpl b/test/testcases/tests/level1/html/HTMLAnchorElement06.xml.notimpl deleted file mode 100644 index ad768fa..0000000 --- a/test/testcases/tests/level1/html/HTMLAnchorElement06.xml.notimpl +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - -HTMLAnchorElement06 -NIST - - The name attribute contains the anchor name. - - Retrieve the name attribute and examine its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement07.xml b/test/testcases/tests/level1/html/HTMLAnchorElement07.xml new file mode 100644 index 0000000..a70cc36 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLAnchorElement07.xml @@ -0,0 +1,42 @@ + + + + + + + +HTMLAnchorElement07 +NIST + + The rel attribute contains the forward link type. + + Retrieve the rel attribute and examine its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement07.xml.notimpl b/test/testcases/tests/level1/html/HTMLAnchorElement07.xml.notimpl deleted file mode 100644 index a70cc36..0000000 --- a/test/testcases/tests/level1/html/HTMLAnchorElement07.xml.notimpl +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - -HTMLAnchorElement07 -NIST - - The rel attribute contains the forward link type. - - Retrieve the rel attribute and examine its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement08.xml b/test/testcases/tests/level1/html/HTMLAnchorElement08.xml new file mode 100644 index 0000000..bb76341 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLAnchorElement08.xml @@ -0,0 +1,42 @@ + + + + + + + +HTMLAnchorElement08 +NIST + + The rev attribute contains the reverse link type + + Retrieve the rev attribute and examine its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement08.xml.notimpl b/test/testcases/tests/level1/html/HTMLAnchorElement08.xml.notimpl deleted file mode 100644 index bb76341..0000000 --- a/test/testcases/tests/level1/html/HTMLAnchorElement08.xml.notimpl +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - -HTMLAnchorElement08 -NIST - - The rev attribute contains the reverse link type - - Retrieve the rev attribute and examine its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement09.xml b/test/testcases/tests/level1/html/HTMLAnchorElement09.xml new file mode 100644 index 0000000..7da6d18 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLAnchorElement09.xml @@ -0,0 +1,42 @@ + + + + + + + +HTMLAnchorElement09 +NIST + + The shape attribute contains the shape of the active area. + + Retrieve the shape attribute and examine its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement09.xml.notimpl b/test/testcases/tests/level1/html/HTMLAnchorElement09.xml.notimpl deleted file mode 100644 index 7da6d18..0000000 --- a/test/testcases/tests/level1/html/HTMLAnchorElement09.xml.notimpl +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - -HTMLAnchorElement09 -NIST - - The shape attribute contains the shape of the active area. - - Retrieve the shape attribute and examine its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement10.xml b/test/testcases/tests/level1/html/HTMLAnchorElement10.xml new file mode 100644 index 0000000..201c113 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLAnchorElement10.xml @@ -0,0 +1,43 @@ + + + + + + + +HTMLAnchorElement10 +NIST + + The tabIndex attribute contains an index that represents the elements + position in the tabbing order. + + Retrieve the tabIndex attribute and examine its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement10.xml.notimpl b/test/testcases/tests/level1/html/HTMLAnchorElement10.xml.notimpl deleted file mode 100644 index 201c113..0000000 --- a/test/testcases/tests/level1/html/HTMLAnchorElement10.xml.notimpl +++ /dev/null @@ -1,43 +0,0 @@ - - - - - - - -HTMLAnchorElement10 -NIST - - The tabIndex attribute contains an index that represents the elements - position in the tabbing order. - - Retrieve the tabIndex attribute and examine its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement11.xml b/test/testcases/tests/level1/html/HTMLAnchorElement11.xml new file mode 100644 index 0000000..00c2bb9 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLAnchorElement11.xml @@ -0,0 +1,42 @@ + + + + + + + +HTMLAnchorElement11 +NIST + + The target attribute specifies the frame to render the source in. + + Retrieve the target attribute and examine it's value. + +Rick Rivello +2002-05-09 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement11.xml.notimpl b/test/testcases/tests/level1/html/HTMLAnchorElement11.xml.notimpl deleted file mode 100644 index 00c2bb9..0000000 --- a/test/testcases/tests/level1/html/HTMLAnchorElement11.xml.notimpl +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - -HTMLAnchorElement11 -NIST - - The target attribute specifies the frame to render the source in. - - Retrieve the target attribute and examine it's value. - -Rick Rivello -2002-05-09 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement12.xml b/test/testcases/tests/level1/html/HTMLAnchorElement12.xml new file mode 100644 index 0000000..3b22328 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLAnchorElement12.xml @@ -0,0 +1,42 @@ + + + + + + + +HTMLAnchorElement12 +NIST + + The type attribute contains the advisory content model. + + Retrieve the type attribute and examine its value. + +Mary Brady +2002-02-22 + + + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement12.xml.notimpl b/test/testcases/tests/level1/html/HTMLAnchorElement12.xml.notimpl deleted file mode 100644 index 3b22328..0000000 --- a/test/testcases/tests/level1/html/HTMLAnchorElement12.xml.notimpl +++ /dev/null @@ -1,42 +0,0 @@ - - - - - - - -HTMLAnchorElement12 -NIST - - The type attribute contains the advisory content model. - - Retrieve the type attribute and examine its value. - -Mary Brady -2002-02-22 - - - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement13.xml b/test/testcases/tests/level1/html/HTMLAnchorElement13.xml new file mode 100644 index 0000000..555985d --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLAnchorElement13.xml @@ -0,0 +1,37 @@ + + + + + + + +HTMLAnchorElement13 +Curt Arnold + +HTMLAnchorElement.blur should surrender input focus. + +2004-03-18 + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement13.xml.notimpl b/test/testcases/tests/level1/html/HTMLAnchorElement13.xml.notimpl deleted file mode 100644 index 555985d..0000000 --- a/test/testcases/tests/level1/html/HTMLAnchorElement13.xml.notimpl +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - -HTMLAnchorElement13 -Curt Arnold - -HTMLAnchorElement.blur should surrender input focus. - -2004-03-18 - - - - - - - - - - - diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement14.xml b/test/testcases/tests/level1/html/HTMLAnchorElement14.xml new file mode 100644 index 0000000..7d3d0c6 --- /dev/null +++ b/test/testcases/tests/level1/html/HTMLAnchorElement14.xml @@ -0,0 +1,37 @@ + + + + + + + +HTMLAnchorElement14 +Curt Arnold + +HTMLAnchorElement.focus should capture input focus. + +2004-03-18 + + + + + + + + + + + diff --git a/test/testcases/tests/level1/html/HTMLAnchorElement14.xml.notimpl b/test/testcases/tests/level1/html/HTMLAnchorElement14.xml.notimpl deleted file mode 100644 index 7d3d0c6..0000000 --- a/test/testcases/tests/level1/html/HTMLAnchorElement14.xml.notimpl +++ /dev/null @@ -1,37 +0,0 @@ - - - - - - - -HTMLAnchorElement14 -Curt Arnold - -HTMLAnchorElement.focus should capture input focus. - -2004-03-18 - - - - - - - - - - - -- cgit v1.2.3