summaryrefslogtreecommitdiff
path: root/test/testcases/tests/level1/core/hc_documentcreateelementcasesensitive.xml
diff options
context:
space:
mode:
Diffstat (limited to 'test/testcases/tests/level1/core/hc_documentcreateelementcasesensitive.xml')
-rw-r--r--test/testcases/tests/level1/core/hc_documentcreateelementcasesensitive.xml56
1 files changed, 56 insertions, 0 deletions
diff --git a/test/testcases/tests/level1/core/hc_documentcreateelementcasesensitive.xml b/test/testcases/tests/level1/core/hc_documentcreateelementcasesensitive.xml
new file mode 100644
index 0000000..62051cf
--- /dev/null
+++ b/test/testcases/tests/level1/core/hc_documentcreateelementcasesensitive.xml
@@ -0,0 +1,56 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+Copyright (c) 2001-2003 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.
+--><!DOCTYPE test SYSTEM "dom1.dtd">
+
+<test xmlns="http://www.w3.org/2001/DOM-Test-Suite/Level-1" name="hc_documentcreateelementcasesensitive">
+<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>