00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 package org.w3c.domts.level1.core;
00021
00022 import org.w3c.dom.*;
00023 import org.w3c.dom.html.*;
00024 import org.w3c.dom.events.*;
00025 import org.w3c.domts.*;
00026 import javax.xml.parsers.*;
00027 import java.util.*;
00028
00029
00030
00050 public class nodereplacechildnomodificationallowederr extends DOMTestCase {
00051
00052 public nodereplacechildnomodificationallowederr(DOMTestDocumentBuilderFactory factory)
00053 throws DOMTestIncompatibleException {
00054
00055 DocumentBuilderSetting[] settings = new DocumentBuilderSetting[] {
00056 DocumentBuilderSetting.notExpandEntityReferences
00057 };
00058 DOMTestDocumentBuilderFactory testFactory = factory.newInstance(settings);
00059 setFactory(testFactory);
00060
00061 }
00062
00063 public void runTest() throws java.lang.Throwable {
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 }
00091 public String getTargetURI() {
00092 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/nodereplacechildnomodificationallowederr";
00093 }
00094 public static void main(String[] args) {
00095 DOMTestCase.doMain(nodereplacechildnomodificationallowederr.class,args);
00096 }
00097 }