Searched refs:replaceChild (Results 1 - 25 of 194) sorted by relevance

12345678

/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dnodereplacechild30.js81 Using replaceChild on an Element node attempt to replace a new Element child node with
124 replaced = parent.replaceChild(newElement,oldChild);
128 replaced = parent.replaceChild(oldChild,newElement);
132 replaced = parent.replaceChild(newText,oldChild);
136 replaced = parent.replaceChild(oldChild,newText);
140 replaced = parent.replaceChild(newComment,oldChild);
144 replaced = parent.replaceChild(oldChild,newComment);
148 replaced = parent.replaceChild(oldChild,newPI);
152 replaced = parent.replaceChild(oldChild,newCdata);
156 replaced = parent.replaceChild(oldChil
[all...]
H A Dnodereplacechild23.js78 Using replaceChild on a new EntityReference node attempt to replace an Element, Text,
119 replaced = entRef.replaceChild(cdata,elem);
130 replaced = entRef.replaceChild(pi,cdata);
141 replaced = entRef.replaceChild(comment,pi);
152 replaced = entRef.replaceChild(txt,comment);
163 replaced = entRef.replaceChild(elem,txt);
H A Dnodereplacechild38.js78 Using replaceChild on an Entity node attempt to replace its Text child with new Text,
121 replaced = ent.replaceChild(cdata,oldChild);
133 replaced = ent.replaceChild(pi,oldChild);
145 replaced = ent.replaceChild(comment,oldChild);
157 replaced = ent.replaceChild(txt,oldChild);
169 replaced = ent.replaceChild(elem,oldChild);
181 replaced = ent.replaceChild(entRef,oldChild);
H A Dnodereplacechild22.js78 Using replaceChild on a new EntityReference node attempt to replace an EntityReference node with
108 replacedChild = entRefMain.replaceChild(elem,entRef);
119 replacedChild = entRefMain.replaceChild(entRef,elem);
130 replacedChild = entRefMain.replaceChild(entRefMain,entRef);
H A Dnodereplacechild01.js79 The method replaceChild replaces the child node oldChild with newChild in the list of
83 Using replaceChild on this Document node attempt to replace this Document node with itself
104 replaced = doc.replaceChild(doc,doc);
H A Dnodereplacechild02.js79 The method replaceChild replaces the child node oldChild with newChild in the list of
82 Using replaceChild on this Document node attempt to replace this DocumentType node with
103 replaced = doc.replaceChild(docType,docType);
H A Dnodereplacechild17.js81 Using replaceChild on a DocumentFragment node attempt to replace a Comment node with
111 replacedCmt = docFrag.replaceChild(pi,cmt);
115 replacedPi = docFrag.replaceChild(cmt,pi);
H A Dnodereplacechild18.js78 Using replaceChild on a DocumentFragment node attempt to replace a CDATASection node with
108 replacedCData = docFrag.replaceChild(entRef,cdata);
112 replacedEref = docFrag.replaceChild(cdata,entRef);
H A Dnodereplacechild21.js85 The method replaceChild replaces the child node oldChild with newChild in the list of
88 Using replaceChild on this DocumentType node attempt to replace an Entity node with
135 replacedChild = docType.replaceChild(notation,ent);
146 replacedChild = docType.replaceChild(ent,docType);
H A Dnodereplacechild25.js78 Using replaceChild on an Element node attempt to replace an
117 replaced = elem.replaceChild(entity,entRef);
128 replaced = elem.replaceChild(elem,entRef);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DANoopCommand.java41 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) method in class:ANoopCommand
H A DANoopExpression.java41 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) method in class:ANoopExpression
H A DToken.java55 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) method in class:Token
H A DNode.java26 abstract void replaceChild(Node oldChild, Node newChild); method in class:Node
30 this.parent.replaceChild(this, node);
/external/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMNodeCustom.cpp41 WebDOMNode WebDOMNode::replaceChild(const WebDOMNode& newChild, const WebDOMNode& oldChild) function in class:WebDOMNode
47 if (impl()->replaceChild(toWebCore(newChild), toWebCore(oldChild), ec, true))
/external/webkit/LayoutTests/dom/html/level1/core/
H A Dhc_nodereplacechild.js78 The "replaceChild(newChild,oldChild)" method replaces
114 replacedNode = employeeNode.replaceChild(newChild,oldChild);
H A Dhc_nodereplacechildinvalidnodetype.js78 The "replaceChild(newChild,oldChild)" method raises a
121 replacedChild = rootNode.replaceChild(newChild,oldChild);
H A Dhc_nodereplacechildnodeancestor.js78 The "replaceChild(newChild,oldChild)" method raises a
120 replacedNode = employeeNode.replaceChild(newChild,oldChild);
H A Dhc_nodereplacechildnodename.js78 The "replaceChild(newChild,oldChild)" method returns
83 returned by the "replaceChild(newChild,oldChild)"
114 replacedNode = employeeNode.replaceChild(newChild,oldChild);
H A Dhc_nodereplacechildoldchildnonexistent.js78 The "replaceChild(newChild,oldChild)" method raises a
116 replacedNode = elementNode.replaceChild(newChild,oldChild);
/external/webkit/LayoutTests/dom/xhtml/level1/core/
H A Dhc_nodereplacechild.js78 The "replaceChild(newChild,oldChild)" method replaces
114 replacedNode = employeeNode.replaceChild(newChild,oldChild);
H A Dhc_nodereplacechildinvalidnodetype.js78 The "replaceChild(newChild,oldChild)" method raises a
121 replacedChild = rootNode.replaceChild(newChild,oldChild);
H A Dhc_nodereplacechildnodeancestor.js78 The "replaceChild(newChild,oldChild)" method raises a
120 replacedNode = employeeNode.replaceChild(newChild,oldChild);
H A Dhc_nodereplacechildnodename.js78 The "replaceChild(newChild,oldChild)" method returns
83 returned by the "replaceChild(newChild,oldChild)"
114 replacedNode = employeeNode.replaceChild(newChild,oldChild);
H A Dhc_nodereplacechildoldchildnonexistent.js78 The "replaceChild(newChild,oldChild)" method raises a
116 replacedNode = elementNode.replaceChild(newChild,oldChild);

Completed in 189 milliseconds

12345678