Searched refs:oldChild (Results 1 - 25 of 158) sorted by relevance

1234567

/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dnodereplacechild30.js93 var oldChild;
110 oldChild = doc.createElementNS("http://www.w3.org/1999/xhtml","xhtml:head");
112 appendedChild = parent.appendChild(oldChild);
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,newP
[all...]
H A Dnodereplacechild34.js90 var oldChild;
102 oldChild = doc.createEntityReference("delta");
103 appendedChild = parent.appendChild(oldChild);
105 replaced = parent.replaceChild(newChild,oldChild);
H A Dnodereplacechild35.js90 var oldChild;
102 oldChild = doc.createEntityReference("delta");
103 appendedChild = parent.appendChild(oldChild);
109 replaced = parent.replaceChild(newChild,oldChild);
H A Dnodereplacechild38.js93 var oldChild;
113 oldChild = ent.firstChild;
115 assertNotNull("alphaText",oldChild);
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 Dnodereplacechild29.js91 var oldChild;
102 oldChild = doc.createElementNS("http://www.w3.org/1999/xhtml","dom3:br");
108 replaced = elem.replaceChild(newChild,oldChild);
H A Dnodereplacechild33.js92 var oldChild;
106 oldChild = parent.lastChild;
108 replaced = parent.replaceChild(newChild,oldChild);
H A Dnodereplacechild36.js90 var oldChild;
101 oldChild = doc.createEntityReference("delta");
107 replaced = parent.replaceChild(newChild,oldChild);
H A Dsplitcdatasections01.js95 var oldChild;
109 oldChild = elem.firstChild;
112 retval = elem.replaceChild(newChild,oldChild);
/external/webkit/LayoutTests/dom/html/level1/core/
H A Dhc_noderemovechildgetnodename.js78 The "removeChild(oldChild)" method returns
83 "removeChild(oldChild)" method. The returned node
98 var oldChild;
112 oldChild = childList.item(0);
113 oldName = oldChild.nodeName;
115 removedChild = employeeNode.removeChild(oldChild);
H A Dhc_nodereplacechildinvalidnodetype.js78 The "replaceChild(newChild,oldChild)" method raises a
104 var oldChild;
114 oldChild = elementList.item(1);
115 rootNode = oldChild.parentNode;
121 replacedChild = rootNode.replaceChild(newChild,oldChild);
H A Dhc_noderemovechildoldchildnonexistent.js78 The "removeChild(oldChild)" method raises a
97 var oldChild;
107 oldChild = doc.createElement("br");
114 removedChild = elementNode.removeChild(oldChild);
H A Dhc_nodereplacechild.js78 The "replaceChild(newChild,oldChild)" method replaces
79 the node "oldChild" with the node "newChild".
97 var oldChild;
112 oldChild = childList.item(0);
114 replacedNode = employeeNode.replaceChild(newChild,oldChild);
H A Dhc_nodereplacechildnodeancestor.js78 The "replaceChild(newChild,oldChild)" method raises a
101 var oldChild;
115 oldChild = childList.item(0);
120 replacedNode = employeeNode.replaceChild(newChild,oldChild);
H A Dhc_nodereplacechildnodename.js78 The "replaceChild(newChild,oldChild)" method returns
83 returned by the "replaceChild(newChild,oldChild)"
99 var oldChild;
112 oldChild = childList.item(0);
114 replacedNode = employeeNode.replaceChild(newChild,oldChild);
H A Dhc_nodereplacechildoldchildnonexistent.js78 The "replaceChild(newChild,oldChild)" method raises a
97 var oldChild;
109 oldChild = doc.createElement("b");
116 replacedNode = elementNode.replaceChild(newChild,oldChild);
/external/webkit/LayoutTests/dom/xhtml/level1/core/
H A Dhc_noderemovechildgetnodename.js78 The "removeChild(oldChild)" method returns
83 "removeChild(oldChild)" method. The returned node
98 var oldChild;
112 oldChild = childList.item(0);
113 oldName = oldChild.nodeName;
115 removedChild = employeeNode.removeChild(oldChild);
H A Dhc_nodereplacechildinvalidnodetype.js78 The "replaceChild(newChild,oldChild)" method raises a
104 var oldChild;
114 oldChild = elementList.item(1);
115 rootNode = oldChild.parentNode;
121 replacedChild = rootNode.replaceChild(newChild,oldChild);
H A Dhc_noderemovechildoldchildnonexistent.js78 The "removeChild(oldChild)" method raises a
97 var oldChild;
107 oldChild = doc.createElement("br");
114 removedChild = elementNode.removeChild(oldChild);
H A Dhc_nodereplacechild.js78 The "replaceChild(newChild,oldChild)" method replaces
79 the node "oldChild" with the node "newChild".
97 var oldChild;
112 oldChild = childList.item(0);
114 replacedNode = employeeNode.replaceChild(newChild,oldChild);
H A Dhc_nodereplacechildnodeancestor.js78 The "replaceChild(newChild,oldChild)" method raises a
101 var oldChild;
115 oldChild = childList.item(0);
120 replacedNode = employeeNode.replaceChild(newChild,oldChild);
H A Dhc_nodereplacechildnodename.js78 The "replaceChild(newChild,oldChild)" method returns
83 returned by the "replaceChild(newChild,oldChild)"
99 var oldChild;
112 oldChild = childList.item(0);
114 replacedNode = employeeNode.replaceChild(newChild,oldChild);
H A Dhc_nodereplacechildoldchildnonexistent.js78 The "replaceChild(newChild,oldChild)" method raises a
97 var oldChild;
109 oldChild = doc.createElement("b");
116 replacedNode = elementNode.replaceChild(newChild,oldChild);
/external/webkit/Source/WebCore/bindings/cpp/
H A DWebDOMNodeCustom.cpp41 WebDOMNode WebDOMNode::replaceChild(const WebDOMNode& newChild, const WebDOMNode& oldChild) argument
47 if (impl()->replaceChild(toWebCore(newChild), toWebCore(oldChild), ec, true))
48 return oldChild;
54 WebDOMNode WebDOMNode::removeChild(const WebDOMNode& oldChild) argument
60 if (impl()->removeChild(toWebCore(oldChild), ec))
61 return oldChild;
/external/webkit/Source/WebCore/rendering/
H A DRenderObjectChildList.cpp64 RenderObject* RenderObjectChildList::removeChildNode(RenderObject* owner, RenderObject* oldChild, bool fullRemove) argument
66 ASSERT(oldChild->parent() == owner);
71 if (!owner->documentBeingDestroyed() && fullRemove && oldChild->m_everHadLayout) {
72 oldChild->setNeedsLayoutAndPrefWidthsRecalc();
73 if (oldChild->isBody())
76 oldChild->repaint();
80 if (oldChild->isBox())
81 toRenderBox(oldChild)->deleteLineBoxWrapper();
86 if (owner->style()->visibility() != VISIBLE && oldChild->style()->visibility() == VISIBLE && !oldChild
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAMultipleCommand.java78 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
83 if(i.next() == oldChild)
89 oldChild.parent(null);
94 oldChild.parent(null);

Completed in 574 milliseconds

1234567