Home | History | Annotate | Download | only in dom

Lines Matching refs:testAddr

82 //        Element testAddr;
86 // testAddr = (Element) elementList.item(0);
87 // attrValue = testAddr.getAttributeNS(namespaceURI, localName);
97 Element testAddr;
103 testAddr = (Element) elementList.item(0);
104 assertNotNull("empAddrNotNull", testAddr);
105 testAddr.setAttributeNodeNS(newAttribute);
107 testAddr = (Element) elementList.item(0);
108 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
116 Element testAddr;
120 testAddr = (Element) elementList.item(0);
121 assertNotNull("empAddrNotNull", testAddr);
122 testAddr.removeAttributeNS(namespaceURI, localName);
123 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
133 Element testAddr;
139 testAddr = (Element) elementList.item(0);
140 assertNotNull("empAddrNotNull", testAddr);
141 testAddr.setAttributeNS(namespaceURI, qualifiedName, "NewValue");
142 attrValue = testAddr.getAttributeNS(namespaceURI, localName);
148 Element testAddr;
152 testAddr = (Element) elementList.item(0);
153 assertNotNull("empAddrNotNull", testAddr);
154 attrValue = testAddr.getAttributeNS("http://www.nist.gov", "domestic");