Test http://www.w3.org/2001/DOM-Test-Suite/level1/core/hc_documentcreateelementcasesensitive

<test name='hc_documentcreateelementcasesensitive' schemaLocation='http://www.w3.org/2001/DOM-Test-Suite/Level-1 dom1.xsd'>
     <metadata>
          <title>hc_documentCreateElementCaseSensitive</title>
          <creator>Curt Arnold</creator>
          <description> The tagName parameter in the "createElement(tagName)" method is case-sensitive for XML documents. Retrieve the entire DOM document and invoke its "createElement(tagName)" method twice. Once for tagName equal to "acronym" and once for tagName equal to "ACRONYM" Each call should create a distinct Element node. The newly created Elements are then assigned attributes that are retrieved. Modified on 27 June 2003 to avoid setting an invalid style values and checked the node names to see if they matched expectations. </description>
          <date qualifier='created'>2002-06-09</date>
          <subject resource='http://www.w3.org/TR/1998/REC-DOM-Level-1-19981001/level-one-core#ID-2141741547'/>
          <subject resource='http://www.w3.org/Bugs/Public/show_bug.cgi?id=243'/>
</metadata>
     <var name='doc' type='Document'/>
     <var name='newElement1' type='Element'/>
     <var name='newElement2' type='Element'/>
     <var name='attribute1' type='DOMString'/>
     <var name='attribute2' type='DOMString'/>
     <var name='nodeName1' type='DOMString'/>
     <var name='nodeName2' type='DOMString'/>
     <load var='doc' href='hc_staff' willBeModified='true'/>
     <createElement obj='doc' var='newElement1' tagName='"ACRONYM"'/>
     <createElement obj='doc' var='newElement2' tagName='"acronym"'/>
     <setAttribute obj='newElement1' name='"lang"' value='"EN"'/>
     <setAttribute obj='newElement2' name='"title"' value='"Dallas"'/>
     <getAttribute obj='newElement1' var='attribute1' name='"lang"'/>
     <getAttribute obj='newElement2' var='attribute2' name='"title"'/>
     <assertEquals actual='attribute1' expected='"EN"' ignoreCase='false' id='attrib1'/>
     <assertEquals actual='attribute2' expected='"Dallas"' ignoreCase='false' id='attrib2'/>
     <nodeName var='nodeName1' obj='newElement1'/>
     <nodeName var='nodeName2' obj='newElement2'/>
     <assertEquals actual='nodeName1' expected='"ACRONYM"' ignoreCase='auto' id='nodeName1'/>
     <assertEquals actual='nodeName2' expected='"acronym"' ignoreCase='auto' id='nodeName2'/>
</test>

Copyright (c) 2001-2004 World Wide Web Consortium, (Massachusetts Institute of Technology, Institut National de Recherche en Informatique et en Automatique, Keio University). All Rights Reserved. This program is distributed under the W3C's Software Intellectual Property License. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

See W3C License http://www.w3.org/Consortium/Legal/ for more details.