summaryrefslogtreecommitdiff
path: root/content/handlers/javascript/duktape/Node.bnd
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@digital-scurf.org>2019-05-04 23:06:14 +0100
committerDaniel Silverstone <dsilvers@digital-scurf.org>2019-05-04 23:06:20 +0100
commit6dfc0f1486e50ff6a3bb74164cc5e0af6b012deb (patch)
treeee2ef12f492262dcb427921843b15a8eca63f298 /content/handlers/javascript/duktape/Node.bnd
parent38a65c0242ca7b32aa74537ab72d52510a9a32c8 (diff)
downloadnetsurf-6dfc0f1486e50ff6a3bb74164cc5e0af6b012deb.tar.gz
netsurf-6dfc0f1486e50ff6a3bb74164cc5e0af6b012deb.tar.bz2
Support nodelist indexing
Signed-off-by: Daniel Silverstone <dsilvers@digital-scurf.org>
Diffstat (limited to 'content/handlers/javascript/duktape/Node.bnd')
-rw-r--r--content/handlers/javascript/duktape/Node.bnd8
1 files changed, 8 insertions, 0 deletions
diff --git a/content/handlers/javascript/duktape/Node.bnd b/content/handlers/javascript/duktape/Node.bnd
index fe24b3f11..4140d3335 100644
--- a/content/handlers/javascript/duktape/Node.bnd
+++ b/content/handlers/javascript/duktape/Node.bnd
@@ -10,6 +10,9 @@
class Node {
private dom_node *node;
+ prologue %{
+#define LIST_PROXY_MAGIC MAGIC(LIST_PROXY)
+%}
};
init Node(struct dom_node *node)
@@ -117,12 +120,17 @@ getter Node::childNodes()
duk_pop(ctx);
exc = dom_node_get_child_nodes(priv->node, &nlist);
if (exc != DOM_NO_ERR) return 0;
+ duk_get_global_string(ctx, LIST_PROXY_MAGIC);
duk_push_pointer(ctx, nlist);
if (dukky_create_object(ctx, PROTO_NAME(NODELIST), 1) != DUK_EXEC_SUCCESS) {
dom_nodelist_unref(nlist);
return 0;
}
dom_nodelist_unref(nlist);
+ if (dukky_pcall(ctx, 1, false) != 0) {
+ NSLOG(dukky, DEBUG, "Unable to construct nodelist?");
+ return 0; /* coerced to undefined */
+ }
duk_dup(ctx, -1);
duk_put_prop_string(ctx, 0, MAGIC(childNodes));
}