summaryrefslogtreecommitdiff
path: root/test/testutils/foreach.c
diff options
context:
space:
mode:
authorJohn-Mark Bell <jmb@netsurf-browser.org>2012-09-19 00:03:05 +0100
committerJohn-Mark Bell <jmb@netsurf-browser.org>2012-09-19 00:03:05 +0100
commit15fa04e97c7c0c9108c0324bae4dfd384e2eb3be (patch)
tree8c6efd74987cd9c9ab0a0bd8bf8e5735bef8e7a8 /test/testutils/foreach.c
parent2a9572f844e04332d6a448b2f52be8ba2a5e8784 (diff)
downloadlibdom-15fa04e97c7c0c9108c0324bae4dfd384e2eb3be.tar.gz
libdom-15fa04e97c7c0c9108c0324bae4dfd384e2eb3be.tar.bz2
Enable HTMLSelectElement tests
Diffstat (limited to 'test/testutils/foreach.c')
-rw-r--r--test/testutils/foreach.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/test/testutils/foreach.c b/test/testutils/foreach.c
index 764920c..bbc8a47 100644
--- a/test/testutils/foreach.c
+++ b/test/testutils/foreach.c
@@ -34,6 +34,11 @@ void foreach_initialise_domnamednodemap(dom_namednodemap *map, unsigned int *ite
*iterator = 0;
}
+void foreach_initialise_domhtmlcollection(dom_html_collection *coll, unsigned int *iterator)
+{
+ (void)coll;
+ *iterator = 0;
+}
bool _get_next_domnodelist(dom_nodelist *list, unsigned int *iterator, dom_node **ret)
{
@@ -97,3 +102,24 @@ bool _get_next_domnamednodemap(dom_namednodemap *map, unsigned int *iterator, do
return true;
}
+
+bool _get_next_domhtmlcollection(dom_html_collection *coll, unsigned int *iterator, dom_node **ret)
+{
+ dom_exception err;
+ unsigned long len;
+
+ err = dom_html_collection_get_length(coll, &len);
+ if (err != DOM_NO_ERR)
+ return false;
+
+ if (*iterator >= len)
+ return false;
+
+ err = dom_html_collection_item(coll, (*iterator), ret);
+ if (err != DOM_NO_ERR)
+ return false;
+
+ (*iterator)++;
+
+ return true;
+}