Public Methods | |
| nodereplacechildnomodificationallowederr (DOMTestDocumentBuilderFactory factory) throws DOMTestIncompatibleException | |
| void | runTest () throws java.lang.Throwable |
| String | getTargetURI () |
Static Public Methods | |
| void | main (String[] args) |
Obtain the children of the THIRD "gender" element. The elements content is an entity reference. Get the FIRST item from the entity reference and execute the "replaceChild(newChild,oldChild)" method. This causes a NO_MODIFICATION_ALLOWED_ERR DOMException to be thrown.
Definition at line 50 of file nodereplacechildnomodificationallowederr.java.
|
|
Definition at line 52 of file nodereplacechildnomodificationallowederr.java. References DocumentBuilderSetting::notExpandEntityReferences, and DOMTest::setFactory().
00053 {
00054
00055 DocumentBuilderSetting[] settings = new DocumentBuilderSetting[] {
00056 DocumentBuilderSetting.notExpandEntityReferences
00057 };
00058 DOMTestDocumentBuilderFactory testFactory = factory.newInstance(settings);
00059 setFactory(testFactory);
00060
00061 }
|
|
|
Reimplemented from DOMTest. Definition at line 91 of file nodereplacechildnomodificationallowederr.java.
00091 {
00092 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/nodereplacechildnomodificationallowederr";
00093 }
|
|
|
Definition at line 94 of file nodereplacechildnomodificationallowederr.java. References DOMTestCase::doMain().
00094 {
00095 DOMTestCase.doMain(nodereplacechildnomodificationallowederr.class,args);
00096 }
|
|
|
Reimplemented from DOMTestCase. Definition at line 63 of file nodereplacechildnomodificationallowederr.java. References DOMTestCase::assertTrue(), and DOMTest::load().
00063 {
00064 Document doc;
00065 NodeList genderList;
00066 Node genderNode;
00067 Node entRef;
00068 Node entElement;
00069 Node createdNode;
00070 Node replacedChild;
00071 doc = load("staff");
00072 genderList = doc.getElementsByTagName("gender");
00073 genderNode = genderList.item(2);
00074 entRef = genderNode.getFirstChild();
00075 entElement = entRef.getFirstChild();
00076 createdNode = doc.createElement("newChild");
00077
00078 {
00079 boolean success = false;
00080 try {
00081 replacedChild = entRef.replaceChild(createdNode,entElement);
00082
00083 }
00084 catch(DOMException ex) {
00085 success = (ex.code == DOMException.NO_MODIFICATION_ALLOWED_ERR);
00086 }
00087 assertTrue("throw_NO_MODIFICATION_ALLOWED_ERR",success);
00088 }
00089
00090 }
|
1.2.13.1 written by Dimitri van Heesch,
© 1997-2001