From f85b498375c0c497630a927804477898e8d9f7eb Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Mon, 5 Dec 2005 11:11:40 +0100 Subject: [PATCH] Add FIXME about using DOM node subtypes when searching the DOM stack --- src/document/dom/stack.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/document/dom/stack.h b/src/document/dom/stack.h index ab2282383..dd2e7f9b2 100644 --- a/src/document/dom/stack.h +++ b/src/document/dom/stack.h @@ -88,6 +88,7 @@ search_dom_stack(struct dom_stack *stack, enum dom_node_type type, struct dom_stack_state *state; int pos; + /* FIXME: Take node subtype and compare if non-zero or something. */ foreachback_dom_state (stack, state, pos) { struct dom_node *parent = state->node;