nodeinsertbeforeinvalidnodetypepublic final class nodeinsertbeforeinvalidnodetype extends org.w3c.domts.DOMTestCase The "insertBefore(newChild,refChild)" 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 insert 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 nodeinsertbeforeinvalidnodetype(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/nodeinsertbeforeinvalidnodetype";
| public static void | main(java.lang.String[] args)Runs this test from the command line.
DOMTestCase.doMain(nodeinsertbeforeinvalidnodetype.class, args);
| public void | runTest()Runs the test case.
Document doc;
Element rootNode;
Node newChild;
NodeList elementList;
Node refChild;
Node insertedNode;
doc = (Document) load("staff", true);
rootNode = doc.getDocumentElement();
newChild = doc.createAttribute("newAttribute");
elementList = doc.getElementsByTagName("employee");
refChild = elementList.item(1);
{
boolean success = false;
try {
insertedNode = rootNode.insertBefore(newChild, refChild);
} catch (DOMException ex) {
success = (ex.code == DOMException.HIERARCHY_REQUEST_ERR);
}
assertTrue("throw_HIERARCHY_REQUEST_ERR", success);
}
|
|