elementgetattributens02public final class elementgetattributens02 extends org.w3c.domts.DOMTestCase The method getAttributeNS retrieves an attribute value by local name and namespace URI.
Using the getAttributeNodeNS, retreive and verify the value of the default
attribute node. |
Constructors Summary |
---|
public elementgetattributens02(org.w3c.domts.DOMTestDocumentBuilderFactory factory)Constructor.
org.w3c.domts.DocumentBuilderSetting[] settings =
new org.w3c.domts.DocumentBuilderSetting[] {
org.w3c.domts.DocumentBuilderSetting.namespaceAware,
org.w3c.domts.DocumentBuilderSetting.validating
};
DOMTestDocumentBuilderFactory testFactory = factory.newInstance(settings);
setFactory(testFactory);
//
// check if loaded documents are supported for content type
//
String contentType = getContentType();
preload(contentType, "staffNS", false);
|
Methods Summary |
---|
public java.lang.String | getTargetURI()Gets URI that identifies the test.
return "http://www.w3.org/2001/DOM-Test-Suite/level2/core/elementgetattributens02";
| public static void | main(java.lang.String[] args)Runs this test from the command line.
DOMTestCase.doMain(elementgetattributens02.class, args);
| public void | runTest()Runs the test case.
Document doc;
Element element;
String attrValue;
NodeList childList;
String nullNS = null;
doc = (Document) load("staffNS", false);
childList = doc.getElementsByTagNameNS("http://www.nist.gov", "employee");
element = (Element) childList.item(1);
attrValue = element.getAttributeNS(nullNS, "defaultAttr");
assertEquals("elementgetattributens02", "defaultVal", attrValue);
|
|