Home
last modified time | relevance | path

Searched refs:txtNode (Results 1 – 3 of 3) sorted by relevance

/libcore/luni/src/test/java/tests/org/w3c/dom/
DHCNodeDocumentFragmentNormalize.java53 Text txtNode; in testNodeDocumentFragmentNormalize1() local
58 txtNode = doc.createTextNode("foo"); in testNodeDocumentFragmentNormalize1()
59 retval = docFragment.appendChild(txtNode); in testNodeDocumentFragmentNormalize1()
60 txtNode = doc.createTextNode("bar"); in testNodeDocumentFragmentNormalize1()
61 retval = docFragment.appendChild(txtNode); in testNodeDocumentFragmentNormalize1()
63 txtNode = (Text) docFragment.getFirstChild(); in testNodeDocumentFragmentNormalize1()
64 nodeValue = txtNode.getNodeValue(); in testNodeDocumentFragmentNormalize1()
66 retval = txtNode.getNextSibling(); in testNodeDocumentFragmentNormalize1()
72 Text txtNode; in testNodeDocumentFragmentNormalize2() local
76 txtNode = doc.createTextNode(""); in testNodeDocumentFragmentNormalize2()
[all …]
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
Dhc_nodedocumentfragmentnormalize1.java62 Text txtNode; in runTest() local
66 txtNode = doc.createTextNode("foo"); in runTest()
67 retval = docFragment.appendChild(txtNode); in runTest()
68 txtNode = doc.createTextNode("bar"); in runTest()
69 retval = docFragment.appendChild(txtNode); in runTest()
71 txtNode = (Text) docFragment.getFirstChild(); in runTest()
72 nodeValue = txtNode.getNodeValue(); in runTest()
74 retval = txtNode.getNextSibling(); in runTest()
Dhc_nodedocumentfragmentnormalize2.java62 Text txtNode; in runTest() local
66 txtNode = doc.createTextNode(""); in runTest()
67 retval = docFragment.appendChild(txtNode); in runTest()
69 txtNode = (Text) docFragment.getFirstChild(); in runTest()
70 assertNull("noChild", txtNode); in runTest()