Home
last modified time | relevance | path

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

/libcore/dom/src/test/java/org/w3c/domts/level2/core/
DdocumentcreateattributeNS02.java67 Attr attribute2; in runTest() local
85 attribute2 = doc.createAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns"); in runTest()
86 name = attribute2.getName(); in runTest()
87 nodeName = attribute2.getNodeName(); in runTest()
88 nodeValue = attribute2.getNodeValue(); in runTest()
89 prefix = attribute2.getPrefix(); in runTest()
90 namespaceURI = attribute2.getNamespaceURI(); in runTest()
Delementsetattributenodens01.java78 Attr attribute2; in runTest() local
89 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test/att1", "p2:att"); in runTest()
90 attribute2.setValue("value2"); in runTest()
92 newAttribute = element.setAttributeNodeNS(attribute2); in runTest()
Dnamednodemapremovenameditemns03.java77 Attr attribute2; in runTest() local
83 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/L2", "L2:att"); in runTest()
84 newAttribute = ((Element) /*Node */element).setAttributeNodeNS(attribute2); in runTest()
Delementsetattributenodens06.java74 Attr attribute2; in runTest() local
87 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test", "attr2"); in runTest()
92 newAttribute = element.setAttributeNodeNS(attribute2); in runTest()
Delementgetattributenodens01.java73 Attr attribute2; in runTest() local
86 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Level1", "att"); in runTest()
87 newAttribute2 = element.setAttributeNodeNS(attribute2); in runTest()
/libcore/luni/src/test/java/tests/org/w3c/dom/
DDocumentCreateAttributeNS.java104 Attr attribute2; in testCreateAttributeNS2() local
126 attribute2 = doc.createAttributeNS("http://www.w3.org/2000/xmlns/", in testCreateAttributeNS2()
128 name = attribute2.getName(); in testCreateAttributeNS2()
129 nodeName = attribute2.getNodeName(); in testCreateAttributeNS2()
130 nodeValue = attribute2.getNodeValue(); in testCreateAttributeNS2()
131 prefix = attribute2.getPrefix(); in testCreateAttributeNS2()
132 namespaceURI = attribute2.getNamespaceURI(); in testCreateAttributeNS2()
DElementSetAttributeNodeNS.java80 Attr attribute2; in testSetAttributeNodeNS1() local
93 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test/att1", in testSetAttributeNodeNS1()
95 attribute2.setValue("value2"); in testSetAttributeNodeNS1()
97 element.setAttributeNodeNS(attribute2); in testSetAttributeNodeNS1()
208 Attr attribute2; in _testSetAttributeNodeNS6() local
220 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Test", in _testSetAttributeNodeNS6()
226 element.setAttributeNodeNS(attribute2); in _testSetAttributeNodeNS6()
DElementGetAttributeNodeNS.java54 Attr attribute2; in testGetAttributeNodeNS1() local
68 attribute2 = doc.createAttributeNS("http://www.w3.org/DOM/Level1", in testGetAttributeNodeNS1()
70 element.setAttributeNodeNS(attribute2); in testGetAttributeNodeNS1()
DNamedNodeMapRemoveNamedItemNS.java122 Attr attribute2; in testRemoveNamedItemNS3() local
129 attribute2 = doc in testRemoveNamedItemNS3()
131 ((Element) /* Node */element).setAttributeNodeNS(attribute2); in testRemoveNamedItemNS3()
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
Ddocumentcreateelementcasesensitive.java69 String attribute2; in runTest() local
76 attribute2 = newElement2.getAttribute("county"); in runTest()
78 assertEquals("attrib2", "Dallas", attribute2); in runTest()
Dhc_documentcreateelementcasesensitive.java71 String attribute2; in runTest() local
80 attribute2 = newElement2.getAttribute("title"); in runTest()
82 assertEquals("attrib2", "Dallas", attribute2); in runTest()