Lines Matching refs:newChild
84 Adds the node newChild to the end of the list of children of this node.
85 @param newChild
89 not allow children of the type of the newChild node, or if the
91 <p>WRONG_DOCUMENT_ERR: Raised if newChild was created from a different
96 XNode appendChild([in] XNode newChild) raises (DOMException);
196 Inserts the node newChild before the existing child node refChild.
199 not allow children of the type of the newChild node, or if the
201 <p>WRONG_DOCUMENT_ERR: Raised if newChild was created from a different
207 XNode insertBefore([in] XNode newChild, [in] XNode refChild) raises (DOMException);
234 Replaces the child node oldChild with newChild in the list of children,
238 does not allow children of the type of the newChild node, or
241 <p>WRONG_DOCUMENT_ERR: Raised if newChild was created from a different
247 XNode replaceChild([in] XNode newChild, [in] XNode oldChild) raises (DOMException);