Lines Matching refs:node
1246 // instanceof doesn't work if the node is from another window (like an
1255 // We're probably cross-origin, which means we aren't a node
1324 * // "Document node with 2 children"
1391 return "Element node " + truncate(ret, 60);
1393 return 'Text node "' + truncate(val.data, 60) + '"';
1395 return "ProcessingInstruction node with target " + format_value(truncate(val.target, 60)) + " and data " + format_value(truncate(val.data, 60));
1397 return "Comment node <!--" + truncate(val.data, 60) + "-->";
1399 return "Document node with " + val.childNodes.length + (val.childNodes.length == 1 ? " child" : " children");
1401 return "DocumentType node";
1403 return "DocumentFragment node with " + val.childNodes.length + (val.childNodes.length == 1 ? " child" : " children");
4024 var node = output_document.getElementById("log");
4025 if (!node) {
4029 node = output_document.createElementNS("http://www.w3.org/1999/xhtml", "div");
4030 node.id = "log";
4032 output_document.body.appendChild(node);
4046 foreignObject.appendChild(node);
4049 .appendChild(node);
4051 root.appendChild(node);
4056 this.output_node = node;
4328 * A text node is represented as
4335 * node would usually go. The function must either return part of a template or null.
4337 * In cases where a set of nodes are required as output rather than a single node
4344 * variable names to parameters and return either a DOM node or a list of DOM nodes