nodereplacechildinvalidnodetypepublic final class nodereplacechildinvalidnodetype extends org.w3c.domts.DOMTestCase The "replaceChild(newChild,oldChild)" method raises a
HIERARCHY_REQUEST_ERR DOMException if this node is of
a type that does not allow children of the type "newChild"
to be inserted.
Retrieve the root node and attempt to replace
one of its children with a newly created Attr node.
An Element node cannot have children of the "Attr"
type, therefore the desired exception should be raised. |
Constructors Summary |
---|
public nodereplacechildinvalidnodetype(org.w3c.domts.DOMTestDocumentBuilderFactory factory)Constructor.
super(factory);
//
// check if loaded documents are supported for content type
//
String contentType = getContentType();
preload(contentType, "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/nodereplacechildinvalidnodetype";
| public static void | main(java.lang.String[] args)Runs this test from the command line.
DOMTestCase.doMain(nodereplacechildinvalidnodetype.class, args);
| public void | runTest()Runs the test case.
Document doc;
Element rootNode;
Node newChild;
NodeList elementList;
Node oldChild;
Node replacedChild;
doc = (Document) load("staff", true);
rootNode = doc.getDocumentElement();
newChild = doc.createAttribute("newAttribute");
elementList = doc.getElementsByTagName("employee");
oldChild = elementList.item(1);
{
boolean success = false;
try {
replacedChild = rootNode.replaceChild(newChild, oldChild);
} catch (DOMException ex) {
success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR);
}
assertTrue("throw_HIERARCHY_REQUEST_ERR", success);
}
|
|