HomeSort by relevance Sort by last modified time
    Searched full:firstchild (Results 201 - 225 of 880) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/webkit/Source/WebCore/dom/
TreeWalker.cpp 73 Node* TreeWalker::firstChild(ScriptState* state)
75 for (RefPtr<Node> node = m_current->firstChild(); node; ) {
84 if (node->firstChild()) {
85 node = node->firstChild();
191 if (sibling->firstChild()) {
192 sibling = sibling->firstChild();
256 while (Node* firstChild = node->firstChild()) {
257 node = firstChild;
TreeWalker.h 48 Node* firstChild(ScriptState*);
58 Node* firstChild() { return firstChild(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); }
  /external/webkit/LayoutTests/fast/dom/Attr/
change-id-via-attr-node-value.html 58 attrNode.replaceChild(document.createTextNode("g"), attrNode.firstChild);
71 attrNode.insertBefore(document.createTextNode("0"), attrNode.firstChild);
97 attrNode.removeChild(attrNode.firstChild);
107 attrNode.firstChild.nodeValue = "i";
108 shouldBe('attrNode.firstChild.nodeValue', '"i"');
125 attrNode.firstChild.splitText(1);
142 attrNode.firstChild.replaceWholeText("j");
151 attrNode.firstChild.data = "k";
160 attrNode.firstChild.appendData("l");
169 attrNode.firstChild.insertData(1, "1")
    [all...]
  /external/webkit/LayoutTests/fast/encoding/resources/
parser-tests.js 29 var want = frame.contentWindow.document.getElementById('expected').firstChild.data;
30 var have = frame.contentWindow.document.getElementById('encoding').firstChild.data;
41 pre.appendChild(document.createTextNode(frame.contentWindow.document.getElementsByTagName('pre')[0].firstChild.data));
%25%u0435 0 %xx%%%ulike.html 6 document.getElementById('result').firstChild.nodeValue = 'SUCCESS';
  /external/webkit/LayoutTests/fast/xpath/py-dom-xpath/
predicates.html 28 var I1 = ROOT.firstChild;
30 var I2 = G1.firstChild;
32 var I3 = G2.firstChild;
  /external/webkit/Source/WebCore/editing/
MergeIdenticalElementsCommand.cpp 48 m_atChild = m_element2->firstChild();
53 for (Node* child = m_element1->firstChild(); child; child = child->nextSibling())
81 for (Node* child = m_element2->firstChild(); child && child != atChild; child = child->nextSibling())
  /external/webkit/Source/WebCore/html/
HTMLTitleElement.cpp 70 for (Node *n = firstChild(); n; n = n->nextSibling()) {
93 if (numChildren == 1 && firstChild()->isTextNode())
94 static_cast<Text*>(firstChild())->setData(value, ec);
  /frameworks/base/core/tests/coretests/src/android/widget/listview/arrowscroll/
ListLastItemPartiallyVisibleTest.java 56 final View firstChild = mListView.getChildAt(0);
57 final int firstBottom = firstChild.getBottom();
60 firstBottom, firstChild.getBottom());
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_mac_unittest.mm 85 BrowserAccessibilityCocoa* firstChild =
88 [firstChild accessibilityAttributeValue:NSAccessibilityTitleAttribute]);
93 BrowserAccessibilityCocoa* firstChild =
96 [firstChild accessibilityAttributeValue:NSAccessibilityTitleAttribute]);
  /external/webkit/LayoutTests/dom/html/level1/core/
hc_attrgetvalue2.js 95 var firstChild;
130 firstChild = titleAttr.firstChild;
132 retval = titleAttr.insertBefore(alphaRef,firstChild);
hc_attrinsertbefore1.js 96 var firstChild;
122 firstChild = titleAttr.firstChild;
124 value = firstChild.nodeValue;
hc_attrinsertbefore3.js 98 var firstChild;
128 firstChild = titleAttr.firstChild;
130 value = firstChild.nodeValue;
hc_elementnormalize.js 92 var firstChild;
113 firstChild = testName.firstChild;
115 childValue = firstChild.nodeValue;
  /external/webkit/LayoutTests/dom/xhtml/level1/core/
hc_attrgetvalue2.js 95 var firstChild;
130 firstChild = titleAttr.firstChild;
132 retval = titleAttr.insertBefore(alphaRef,firstChild);
hc_attrinsertbefore1.js 96 var firstChild;
122 firstChild = titleAttr.firstChild;
124 value = firstChild.nodeValue;
hc_attrinsertbefore3.js 98 var firstChild;
128 firstChild = titleAttr.firstChild;
130 value = firstChild.nodeValue;
hc_elementnormalize.js 92 var firstChild;
113 firstChild = testName.firstChild;
115 childValue = firstChild.nodeValue;
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
datatypenormalization16.js 129 childNode = element.firstChild;
135 childNode = element.firstChild;
141 childNode = element.firstChild;
147 childNode = element.firstChild;
nodereplacechild27.js 105 var firstChild;
116 firstChild = elem.firstChild;
130 replaced = elem.replaceChild(elem2,firstChild);
  /external/webkit/LayoutTests/fast/dom/DOMImplementation/
detached-doctype.html 26 o.firstChild;
  /external/webkit/LayoutTests/fast/dom/NodeList/
adoptNode-node-list-cache.html 46 document.getElementById("result").firstChild.data = "TEST PASSED - Unless an assertion or crash happens soon.";
  /external/webkit/LayoutTests/fast/dom/TreeWalker/script-tests/
previousNodeLastChildReject.js 15 shouldBe("walker.firstChild(); walker.currentNode.id", "'A1'");
traversal-skip-most.js 18 shouldBe("walker.firstChild(); walker.currentNode.id", "'B1'");
  /external/webkit/LayoutTests/fast/xpath/
null-namespace-in-html.html 13 document.body.insertBefore(document.importNode(doc.documentElement, null), document.body.firstChild);

Completed in 323 milliseconds

1 2 3 4 5 6 7 891011>>