Home | History | Annotate | Download | only in dom

Lines Matching refs:attribute

35  * Testing Element.setAttributeNodeNS: If an attribute with that local name and
37 * new one. Create a new element and two new attribute nodes (in the same
38 * namespace and same localNames). Add the two new attribute nodes to the
40 * attribute is added, check the value of this attribute.
113 Attr attribute;
125 attribute = element.getAttributeNodeNS(nullNS, "street");
126 attributeCloned = (Attr) attribute.cloneNode(true);
138 Attr attribute;
147 attribute = element1.getAttributeNodeNS(nullNS, "street");
153 element2.setAttributeNodeNS(attribute);
164 Attr attribute;
169 attribute = doc.createAttributeNS("http://www.w3.org/DOM/Test", "attr");
170 element1.setAttributeNodeNS(attribute);
175 element2.setAttributeNodeNS(attribute);
186 Attr attribute;
191 attribute = docAlt.createAttributeNS("http://www.w3.org/DOM/Test",
197 element.setAttributeNodeNS(attribute);
207 Attr attribute;
214 attribute = doc.createAttributeNS("http://www.w3.org/DOM/Test", "attr");
216 attribute.appendChild(entRef);
217 element.setAttributeNodeNS(attribute);