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
00065 public class elementwrongdocumenterr extends DOMTestCase {
00066
00067 public elementwrongdocumenterr(DOMTestDocumentBuilderFactory factory)
00068 {
00069 super(factory);
00070
00071 }
00072
00073 public void runTest() throws java.lang.Throwable {
00074 Document doc1;
00075 Document doc2;
00076 Attr newAttribute;
00077 NodeList addressElementList;
00078 Element testAddress;
00079 Attr attrAddress;
00080 doc1 = load("staff");
00081 doc2 = load("staff");
00082 newAttribute = doc2.createAttribute("newAttribute");
00083 addressElementList = doc1.getElementsByTagName("address");
00084 testAddress = (Element)addressElementList.item(4);
00085
00086 {
00087 boolean success = false;
00088 try {
00089 attrAddress = testAddress.setAttributeNode(newAttribute);
00090
00091 }
00092 catch(DOMException ex) {
00093 success = (ex.code == DOMException.WRONG_DOCUMENT_ERR);
00094 }
00095 assertTrue("elementWrongDocumentErrAssert",success);
00096 }
00097
00098 }
00099 public String getTargetURI() {
00100 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/elementwrongdocumenterr";
00101 }
00102 public static void main(String[] args) {
00103 DOMTestCase.doMain(elementwrongdocumenterr.class,args);
00104 }
00105 }