HomeSort by relevance Sort by last modified time
    Searched full:nextsibling (Results 1 - 25 of 376) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/fast/dom/TreeWalker/
traversal-skip-most-expected.txt 7 Testing nextSibling
9 PASS walker.nextSibling(); walker.currentNode.id is 'B3'
traversal-reject-expected.txt 16 Testing nextSibling
19 PASS walker.nextSibling(); walker.currentNode.id is 'B3'
traversal-skip-expected.txt 17 Testing nextSibling
20 PASS walker.nextSibling(); walker.currentNode.id is 'B3'
  /external/webkit/LayoutTests/fast/xpath/
evaluate-twice-expected.txt 2 PASS expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue is '1'
4 PASS expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue is '2'
6 PASS expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue is '2'
8 PASS expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.NUMBER_TYPE, null).numberValue is 3
evaluate-twice.html 16 shouldBe("expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue", "'1'");
21 shouldBe("expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue", "'2'");
26 shouldBe("expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.STRING_TYPE, null).stringValue", "'2'");
31 shouldBe("expr.evaluate(doc.documentElement.firstChild.nextSibling, XPathResult.NUMBER_TYPE, null).numberValue", "3");
string-value.html 21 PI = PI.nextSibling;
25 COMMENT = COMMENT.nextSibling;
31 CDATA = CDATA.nextSibling;
  /libcore/luni/src/main/java/javax/xml/transform/dom/
DOMResult.java 100 * <p>In practice, <code>node</code> and <code>nextSibling</code> should be
106 * <p>Use <code>nextSibling</code> to specify the child node
108 * If <code>nextSibling</code> is not a sibling of <code>node</code>,
110 * If <code>node</code> is <code>null</code> and <code>nextSibling</code> is not <code>null</code>,
112 * If <code>nextSibling</code> is <code>null</code>,
119 * @param nextSibling The child node where the result nodes should be inserted before.
121 * @throws IllegalArgumentException If <code>nextSibling</code> is not a sibling of <code>node</code>.
122 * @throws IllegalArgumentException If <code>node</code> is <code>null</code> and <code>nextSibling</code> is not <code>null</code>.
126 public DOMResult(Node node, Node nextSibling) {
129 if (nextSibling != null)
    [all...]
  /cts/tests/tests/webkitsecurity/assets/
render-text-crash.html 5 <input type="text" onkeydown="move(this.nextSibling)"
6 ><input type="text" onkeydown="move(this.nextSibling)"
7 ><input type="text" onkeydown="move(this.nextSibling)"
8 ><input type="text" onkeydown="move(this.nextSibling)"
9 ><input type="text" onkeydown="move(this.nextSibling)"
10 ><input type="text" onkeydown="move(this.nextSibling)">
delete-insignificant-text-crash.html 16 getSelection().setPosition(test.firstChild.nextSibling, 0);
18 test.removeChild(test.firstChild.nextSibling);
body-removal-crash.html 35 document.getElementById("a").parentNode.insertBefore(element, document.getElementById("a").nextSibling);
40 document.getElementById("b").parentNode.insertBefore(element, document.getElementById("b").nextSibling);
word-break-next-linebox-not-dirty-crash.html 18 walk(a, currentPrefix, index + 1, domNode.nextSibling);
  /external/mesa3d/src/talloc/
hieralloc.c 19 struct hieralloc_header * nextSibling, * prevSibling;
52 assert(!header->nextSibling || header->nextSibling->prevSibling == header);
53 assert(!header->nextSibling || header->nextSibling->parent == header->parent);
54 assert(!header->prevSibling || header->prevSibling->nextSibling == header);
75 child = child->nextSibling;
86 assert(NULL == header->nextSibling);
94 // child = child->nextSibling;
98 header->nextSibling = parent->child
    [all...]
  /external/webkit/LayoutTests/fast/dom/TreeWalker/script-tests/
traversal-skip-most.js 16 debug("<br>Testing nextSibling")
19 shouldBe("walker.nextSibling(); walker.currentNode.id", "'B3'");
  /external/webkit/Source/WebCore/html/
HTMLTableRowsCollection.cpp 62 for (child = previous->nextSibling(); child; child = child->nextSibling()) {
72 child = previous->parentNode()->nextSibling();
73 for (; child; child = child->nextSibling()) {
75 for (Node* grandchild = child->firstChild(); grandchild; grandchild = grandchild->nextSibling()) {
86 child = previous->nextSibling();
88 child = previous->parentNode()->nextSibling();
89 for (; child; child = child->nextSibling()) {
93 for (Node* grandchild = child->firstChild(); grandchild; grandchild = grandchild->nextSibling()) {
104 child = previous->parentNode()->nextSibling();
    [all...]
  /external/webkit/LayoutTests/fast/xpath/py-dom-xpath/
predicates.html 29 var G1 = I1.nextSibling;
31 var G2 = I2.nextSibling;
33 var I4 = G2.nextSibling;
34 var I5 = I4.nextSibling;
35 var I6 = G1.nextSibling;
nodetests.html 22 var DC1 = DI1.nextSibling;
44 var XI2 = XI1.nextSibling;
45 var XI3 = XI2.nextSibling;
46 var XI4 = XI3.nextSibling;
47 var XC1 = XI4.nextSibling;
49 var XI6 = XI5.nextSibling;
50 var XC2 = XC1.nextSibling;
52 var XI8 = XI7.nextSibling;
82 var TEXT = ROOT.firstChild.nextSibling;
84 var PI1 = TEXT.nextSibling;
    [all...]
functions.html 31 var ITEM2 = ITEM1.nextSibling;
32 var ITEM3 = ITEM2.nextSibling;
33 var ITEM4 = ITEM3.nextSibling;
34 var ITEM5 = ITEM4.nextSibling;
35 var REFA = ITEM5.nextSibling;
36 var REFC = REFA.nextSibling;
37 var REFE = REFC.nextSibling;
38 var NAMESPACE = REFE.nextSibling;
40 var ITEM7 = ITEM6.nextSibling;
74 var PARA2 = PARA1.nextSibling;
    [all...]
expressions.html 23 var ITEM2 = ITEM1.nextSibling;
24 var ITEM3 = ITEM2.nextSibling;
25 var ITEM4 = ITEM3.nextSibling;
51 var ITEM2 = ITEM1.nextSibling;
52 var ITEM3 = ITEM2.nextSibling;
53 var ITEM4 = ITEM3.nextSibling;
54 var ITEM5 = ITEM4.nextSibling;
55 var ITEM6 = ITEM5.nextSibling;
56 var ITEM7 = ITEM6.nextSibling;
57 var ITEM8 = ITEM7.nextSibling;
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
canonicalform08.js 131 node = node.nextSibling;
140 node = node.nextSibling;
145 node = node.nextSibling;
154 node = node.nextSibling;
162 node = node.nextSibling;
171 node = node.nextSibling;
176 node = node.nextSibling;
185 node = node.nextSibling;
190 node = node.nextSibling;
canonicalform09.js 133 node = node.nextSibling;
142 node = node.nextSibling;
147 node = node.nextSibling;
156 node = node.nextSibling;
164 node = node.nextSibling;
  /external/webkit/Source/WebCore/editing/
MergeIdenticalElementsCommand.cpp 40 ASSERT(m_element1->nextSibling() == m_element2);
45 if (m_element1->nextSibling() != m_element2 || !m_element1->rendererIsEditable() || !m_element2->rendererIsEditable())
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/svg/
SVGElementInstanceList.cpp 40 for (SVGElementInstance* instance = m_rootInstance->firstChild(); instance; instance = instance->nextSibling())
50 instance = instance->nextSibling();
  /external/webkit/Source/WebCore/inspector/front-end/
treeoutline.js 57 lastChild.nextSibling = child;
61 child.nextSibling = null;
98 previousChild.nextSibling = child;
107 child.nextSibling = nextChild;
109 child.nextSibling = null;
151 else if (child.nextSibling)
152 child.nextSibling.select();
158 child.previousSibling.nextSibling = child.nextSibling;
159 if (child.nextSibling)
    [all...]
  /external/webkit/Source/WebCore/dom/
TreeWalker.h 51 Node* nextSibling(ScriptState*);
61 Node* nextSibling() { return nextSibling(scriptStateFromNode(mainThreadNormalWorld(), m_current.get())); }
  /external/chromium/chrome/browser/resources/
about_credits.tmpl 57 var licence = o.nextSibling;
61 licence = licence.nextSibling;

Completed in 450 milliseconds

1 2 3 4 5 6 7 8 91011>>