hc_nodereplacechildnodenamepublic final class hc_nodereplacechildnodename extends org.w3c.domts.DOMTestCase The "replaceChild(newChild,oldChild)" method returns
the node being replaced.
Replace the second Element of the second employee with
a newly created node Element and check the NodeName
returned by the "replaceChild(newChild,oldChild)"
method. The returned node should have a NodeName equal
to "em". |
Constructors Summary |
---|
public hc_nodereplacechildnodename(org.w3c.domts.DOMTestDocumentBuilderFactory factory)Constructor.
super(factory);
//
// check if loaded documents are supported for content type
//
String contentType = getContentType();
preload(contentType, "hc_staff", true);
|
Methods Summary |
---|
public java.lang.String | getTargetURI()Gets URI that identifies the test.
return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_nodereplacechildnodename";
| public static void | main(java.lang.String[] args)Runs this test from the command line.
DOMTestCase.doMain(hc_nodereplacechildnodename.class, args);
| public void | runTest()Runs the test case.
Document doc;
NodeList elementList;
Node employeeNode;
NodeList childList;
Node oldChild;
Node newChild;
Node replacedNode;
String childName;
doc = (Document) load("hc_staff", true);
elementList = doc.getElementsByTagName("p");
employeeNode = elementList.item(1);
childList = ((Element) /*Node */employeeNode).getElementsByTagName("em");
oldChild = childList.item(0);
newChild = doc.createElement("br");
replacedNode = employeeNode.replaceChild(newChild, oldChild);
childName = replacedNode.getNodeName();
assertEqualsAutoCase("element", "replacedNodeName", "em", childName);
|
|