hc_elementnormalize2public final class hc_elementnormalize2 extends org.w3c.domts.DOMTestCase Add an empty text node to an existing attribute node, normalize the containing element
and check that the attribute node has eliminated the empty text. |
Constructors Summary |
---|
public hc_elementnormalize2(org.w3c.domts.DOMTestDocumentBuilderFactory factory)Constructor.
super(factory);
//
// check if loaded documents are supported for content type
//
String contentType = getContentType();
preload(contentType, "hc_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/hc_elementnormalize2";
| public static void | main(java.lang.String[] args)Runs this test from the command line.
DOMTestCase.doMain(hc_elementnormalize2.class, args);
| public void | runTest()Runs the test case.
Document doc;
Element root;
NodeList elementList;
Element element;
Node firstChild;
Node secondChild;
String childValue;
Text emptyText;
Attr attrNode;
Node retval;
doc = (Document) load("hc_staff", true);
root = doc.getDocumentElement();
emptyText = doc.createTextNode("");
elementList = root.getElementsByTagName("acronym");
element = (Element) elementList.item(0);
attrNode = element.getAttributeNode("title");
retval = attrNode.appendChild(emptyText);
element.normalize();
attrNode = element.getAttributeNode("title");
firstChild = attrNode.getFirstChild();
childValue = firstChild.getNodeValue();
assertEquals("firstChild", "Yes", childValue);
secondChild = firstChild.getNextSibling();
assertNull("secondChildNull", secondChild);
|
|