FileDocCategorySizeDatePackage
documentcreateelementdefaultattr.javaAPI DocAndroid 1.5 API3890Wed May 06 22:41:04 BST 2009org.w3c.domts.level1.core

documentcreateelementdefaultattr

public final class documentcreateelementdefaultattr extends org.w3c.domts.DOMTestCase
The "createElement(tagName)" method creates an Element of the type specified. In addition, if there are known attributes with default values, Attr nodes representing them are automatically created and attached to the element. Retrieve the entire DOM document and invoke its "createElement(tagName)" method with tagName="address". The method should create an instance of an Element node whose tagName is "address". The tagName "address" has an attribute with default values, therefore the newly created element will have them.
author
NIST
author
Mary Brady
see
http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-2141741547
see
http://lists.w3.org/Archives/Public/www-dom-ts/2002Mar/0002.html

Fields Summary
Constructors Summary
public documentcreateelementdefaultattr(org.w3c.domts.DOMTestDocumentBuilderFactory factory)
Constructor.

param
factory document factory, may not be null
throws
org.w3c.domts.DOMTestIncompatibleException Thrown if test is not compatible with parser configuration


      org.w3c.domts.DocumentBuilderSetting[] settings = 
          new org.w3c.domts.DocumentBuilderSetting[] {
org.w3c.domts.DocumentBuilderSetting.validating
        };
        DOMTestDocumentBuilderFactory testFactory = factory.newInstance(settings);
        setFactory(testFactory);

    //
    //   check if loaded documents are supported for content type
    //
    String contentType = getContentType();
    preload(contentType, "staff", true);
    
Methods Summary
public java.lang.StringgetTargetURI()
Gets URI that identifies the test.

return
uri identifier of test

      return "http://www.w3.org/2001/DOM-Test-Suite/level1/core/documentcreateelementdefaultattr";
   
public static voidmain(java.lang.String[] args)
Runs this test from the command line.

param
args command line arguments

        DOMTestCase.doMain(documentcreateelementdefaultattr.class, args);
   
public voidrunTest()
Runs the test case.

throws
Throwable Any uncaught exception causes test to fail

      Document doc;
      Element newElement;
      NamedNodeMap defaultAttr;
      Node child;
      String name;
      String value;
      doc = (Document) load("staff", true);
      newElement = doc.createElement("address");
      defaultAttr = newElement.getAttributes();
      child = defaultAttr.item(0);
      assertNotNull("defaultAttrNotNull", child);
      name = child.getNodeName();
      assertEquals("attrName", "street", name);
      value = child.getNodeValue();
      assertEquals("attrValue", "Yes", value);
      assertSize("attrCount", 1, defaultAttr);