Home
last modified time | relevance | path

Searched refs:otherChild (Results 1 – 11 of 11) sorted by relevance

/external/webkit/LayoutTests/dom/xhtml/level1/core/
Dhc_attrfirstchild.js95 var otherChild;
113 otherChild = textNode.nextSibling;
115 assertNull("nextSiblingIsNull",otherChild);
116 otherChild = textNode.previousSibling;
118 assertNull("previousSiblingIsNull",otherChild);
Dhc_attrlastchild.js95 var otherChild;
113 otherChild = textNode.nextSibling;
115 assertNull("nextSiblingIsNull",otherChild);
116 otherChild = textNode.previousSibling;
118 assertNull("previousSiblingIsNull",otherChild);
Dhc_attrsetvalue1.js94 var otherChild;
124 otherChild = firstChild.nextSibling;
126 assertNull("nextSiblingIsNull",otherChild);
Dhc_attrsetvalue2.js95 var otherChild;
127 otherChild = firstChild.nextSibling;
129 assertNull("nextSiblingIsNull",otherChild);
/external/webkit/LayoutTests/dom/html/level1/core/
Dhc_attrlastchild.js95 var otherChild;
113 otherChild = textNode.nextSibling;
115 assertNull("nextSiblingIsNull",otherChild);
116 otherChild = textNode.previousSibling;
118 assertNull("previousSiblingIsNull",otherChild);
Dhc_attrfirstchild.js95 var otherChild;
113 otherChild = textNode.nextSibling;
115 assertNull("nextSiblingIsNull",otherChild);
116 otherChild = textNode.previousSibling;
118 assertNull("previousSiblingIsNull",otherChild);
Dhc_attrsetvalue1.js94 var otherChild;
124 otherChild = firstChild.nextSibling;
126 assertNull("nextSiblingIsNull",otherChild);
Dhc_attrsetvalue2.js95 var otherChild;
127 otherChild = firstChild.nextSibling;
129 assertNull("nextSiblingIsNull",otherChild);
/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
DLogManagerTest.java167 Logger otherChild = new MockLogger( in testAddGetLogger_Hierachy() local
172 assertNull(otherChild.getParent()); in testAddGetLogger_Hierachy()
196 assertTrue(manager.addLogger(otherChild)); in testAddGetLogger_Hierachy()
198 assertSame(foo, otherChild.getParent()); in testAddGetLogger_Hierachy()
199 assertSame(otherChild, grandson.getParent()); in testAddGetLogger_Hierachy()
/external/webkit/Source/WebCore/history/
DHistoryItem.cpp577 …HistoryItem* otherChild = otherItem->childItemWithDocumentSequenceNumber(child->documentSequenceNu… in hasSameDocumentTree() local
578 if (!otherChild || !child->hasSameDocumentTree(otherChild)) in hasSameDocumentTree()
/external/webkit/Source/WebCore/dom/
DNode.cpp1881 Node* otherChild = other->firstChild(); in isEqualNode() local
1884 if (!child->isEqualNode(otherChild)) in isEqualNode()
1888 otherChild = otherChild->nextSibling(); in isEqualNode()
1891 if (otherChild) in isEqualNode()