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
00052 public class elementinuseattributeerr extends DOMTestCase {
00053
00054 public elementinuseattributeerr(DOMTestDocumentBuilderFactory factory)
00055 {
00056 super(factory);
00057
00058 }
00059
00060 public void runTest() throws java.lang.Throwable {
00061 Document doc;
00062 Attr newAttribute;
00063 NodeList addressElementList;
00064 Element testAddress;
00065 Element newElement;
00066 Attr attrAddress;
00067 Node appendedChild;
00068 Attr setAttr1;
00069 Attr setAttr2;
00070 doc = load("staff");
00071 addressElementList = doc.getElementsByTagName("address");
00072 testAddress = (Element)addressElementList.item(1);
00073 newElement = doc.createElement("newElement");
00074 appendedChild = testAddress.appendChild(newElement);
00075 newAttribute = doc.createAttribute("newAttribute");
00076 setAttr1 = newElement.setAttributeNode(newAttribute);
00077
00078 {
00079 boolean success = false;
00080 try {
00081 setAttr2 = testAddress.setAttributeNode(newAttribute);
00082
00083 }
00084 catch(DOMException ex) {
00085 success = (ex.code == DOMException.INUSE_ATTRIBUTE_ERR);
00086 }
00087 assertTrue("throw_INUSE_ATTRIBUTE_ERR",success);
00088 }
00089
00090 }
00091 public String getTargetURI() {
00092 return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/elementinuseattributeerr";
00093 }
00094 public static void main(String[] args) {
00095 DOMTestCase.doMain(elementinuseattributeerr.class,args);
00096 }
00097 }