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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/manual-tests/
modal-dialog.html 5 document.getElementById("timerResult").firstChild.data = "Timer fired!";
  /external/webkit/Source/WebCore/rendering/
RenderObjectChildList.cpp 48 while (firstChild()) {
49 if (firstChild()->isListMarker() || (firstChild()->style()->styleType() == FIRST_LETTER && !firstChild()->isText()))
50 firstChild()->remove(); // List markers are owned by their enclosing list and so don't get destroyed by this container. Similarly, first letters are destroyed by their remaining text fragment.
51 else if (firstChild()->isRunIn() && firstChild()->node()) {
52 firstChild()->node()->setRenderer(0);
53 firstChild()->node()->setNeedsStyleRecalc();
54 firstChild()->destroy()
    [all...]
RenderRuby.cpp 61 && object->firstChild()
62 && object->firstChild()->style()->styleType() == BEFORE;
69 && object->firstChild()
70 && object->firstChild()->style()->styleType() == AFTER;
75 RenderObject* child = ruby->firstChild();
134 RenderInline::addChild(child, firstChild());
140 RenderInline::addChild(beforeBlock, firstChild());
241 RenderBlock::addChild(child, firstChild());
247 RenderBlock::addChild(beforeBlock, firstChild());
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_attrnormalize.java 67 Node firstChild;
81 firstChild = titleAttr.getFirstChild();
82 value = firstChild.getNodeValue();
84 secondChild = firstChild.getNextSibling();
documentgetelementsbytagnamevalue.java 69 Node firstChild;
74 firstChild = nameNode.getFirstChild();
75 childValue = firstChild.getNodeValue();
  /external/webkit/LayoutTests/fast/xpath/
namespace-vs-predicate.xhtml 32 document.getElementById("result").firstChild.nodeValue = "SUCCESS";
34 document.getElementById("result").firstChild.nodeValue = "FAILURE: " + result.snapshotLength + " node(s) matched - should be 1";
  /external/webkit/Source/WebCore/html/
HTMLTableRowsCollection.cpp 70 child = table->firstChild();
75 for (Node* grandchild = child->firstChild(); grandchild; grandchild = grandchild->nextSibling()) {
84 child = table->firstChild();
93 for (Node* grandchild = child->firstChild(); grandchild; grandchild = grandchild->nextSibling()) {
102 child = table->firstChild();
107 for (Node* grandchild = child->firstChild(); grandchild; grandchild = grandchild->nextSibling()) {
HTMLTableRowElement.cpp 74 for (Node *row = head->firstChild(); row; row = row->nextSibling()) {
82 for (Node *node = table->firstChild(); node; node = node->nextSibling()) {
85 for (Node* row = section->firstChild(); row; row = row->nextSibling()) {
95 for (Node *row = foot->firstChild(); row; row = row->nextSibling()) {
136 n = firstChild();
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLRoot.cpp 93 firstChild()->addChild(child);
104 if (!firstChild() || !lastChild())
119 RenderObject* current = firstChild();
205 if (!firstChild() || !lastChild())
210 RenderObject* current = lastChild()->firstChild();
232 RenderObject* possibleIndex = firstChild()->firstChild();