Index: hc_nodecommentnodeattributes.xml
===================================================================
RCS file: /sources/public/2001/DOM-Test-Suite/tests/level1/core/hc_nodecommentnodeattributes.xml,v
retrieving revision 1.1
diff -r1.1 hc_nodecommentnodeattributes.xml
3c3
< Copyright (c) 2001 World Wide Web Consortium,
---
> Copyright (c) 2001-2003 World Wide Web Consortium,
29a30
> <subject resource="http://www.w3.org/Bugs/Public/show_bug.cgi?id=248"/>
32d32
< <var name="elementList" type="NodeList"/>
33a34
> <var name="nodeList" type="NodeList"/>
34a36
> <var name="nodeType" type="int"/>
36,37c38,42
< <childNodes obj="doc" var="elementList"/>
< <item interface="NodeList" obj="elementList" index="2" var="commentNode"/>
---
> <childNodes obj="doc" var="nodeList"/>
> <for-each collection="nodeList" member="commentNode">
> <nodeType obj="commentNode" var="nodeType"/>
> <if>
> <equals actual="nodeType" expected="8" ignoreCase="false"/>
38a44,49
> <assertNull actual="attrList" id="existingCommentAttributesNull"/>
> </if>
> </for-each>
> <createComment var="commentNode" obj="doc" data='"This is a comment"'/>
> <attributes obj="commentNode" var="attrList"/>
> <assertNull actual="attrList" id="createdCommentAttributesNull"/>
Index: hc_nodecommentnodename.xml
===================================================================
RCS file: /sources/public/2001/DOM-Test-Suite/tests/level1/core/hc_nodecommentnodename.xml,v
retrieving revision 1.1
diff -r1.1 hc_nodecommentnodename.xml
3c3
< Copyright (c) 2001 World Wide Web Consortium,
---
> Copyright (c) 2001-2003 World Wide Web Consortium,
29a30
> <subject resource="http://www.w3.org/Bugs/Public/show_bug.cgi?id=248"/>
44c45
< <assertEquals actual="commentNodeName" expected='"#comment"' id="nodeCommentNodeNameAssert1" ignoreCase="false"/>
---
> <assertEquals actual="commentNodeName" expected='"#comment"' id="existingNodeName" ignoreCase="false"/>
46a48,50
> <createComment var="commentNode" obj="doc"  data='"This is a comment"'/> 
> <nodeName obj="commentNode" var="commentNodeName"/>
> <assertEquals actual="commentNodeName" expected='"#comment"' id="createdNodeName" ignoreCase="false"/>
Index: hc_nodecommentnodetype.xml
===================================================================
RCS file: /sources/public/2001/DOM-Test-Suite/tests/level1/core/hc_nodecommentnodetype.xml,v
retrieving revision 1.1
diff -r1.1 hc_nodecommentnodetype.xml
3c3
< Copyright (c) 2001 World Wide Web Consortium,
---
> Copyright (c) 2001-2003 World Wide Web Consortium,
29a30
> <subject resource="http://www.w3.org/Bugs/Public/show_bug.cgi?id=248"/>
43c44
< <assertEquals actual="nodeType" expected="8" id="nodeCommentNodeTypeAssert1" ignoreCase="false"/>
---
> <assertEquals actual="nodeType" expected="8" id="existingCommentNodeType" ignoreCase="false"/>
45a47,49
> <createComment var="commentNode" obj="doc" data='"This is a comment"'/>
> <nodeType obj="commentNode" var="nodeType"/>
> <assertEquals actual="nodeType" expected="8" id="createdCommentNodeType" ignoreCase="false"/>
Index: hc_nodecommentnodevalue.xml
===================================================================
RCS file: /sources/public/2001/DOM-Test-Suite/tests/level1/core/hc_nodecommentnodevalue.xml,v
retrieving revision 1.1
diff -r1.1 hc_nodecommentnodevalue.xml
3c3
< Copyright (c) 2001 World Wide Web Consortium,
---
> Copyright (c) 2001-2003 World Wide Web Consortium,
29a30
> <subject resource="http://www.w3.org/Bugs/Public/show_bug.cgi?id=248"/>
45a47,49
> <createComment var="commentNode" obj="doc" data='" This is a comment"'/>
> <nodeValue obj="commentNode" var="commentValue"/>
> <assertEquals actual="commentValue" expected='" This is a comment"' id="createdCommentNodeValue" ignoreCase="false"/>
Index: nodecommentnodeattributes.xml
===================================================================
RCS file: /sources/public/2001/DOM-Test-Suite/tests/level1/core/nodecommentnodeattributes.xml,v
retrieving revision 1.4
diff -r1.4 nodecommentnodeattributes.xml
3c3
< Copyright (c) 2001 World Wide Web Consortium,
---
> Copyright (c) 2001-2003 World Wide Web Consortium,
21,24c21,25
<     
<     Retrieve the Comment Node(third child) of the DOM 
<     document and invoke the "getAttributes()" method on the 
<     Comment Node.   It should return null. 
---
> 
>     Find any comment that is an immediate child of the root
>     and assert that Node.attributes is null.  Then create
>     a new comment node (in case they had been omitted) and
>     make the assertion.    
29a31
> <subject resource="http://www.w3.org/Bugs/Public/show_bug.cgi?id=248"/>
32,33c34,35
< <var name="elementList" type="NodeList"/>
< <var name="commentNode" type="Node"/>
---
> <var name="childList" type="NodeList"/>
> <var name="childNode" type="Node"/>
34a37
> <var name="nodeType" type="int"/>
36,38c39,49
< <childNodes obj="doc" var="elementList"/>
< <item interface="NodeList" obj="elementList" index="2" var="commentNode"/>
< <attributes obj="commentNode" var="attrList"/>
---
> <childNodes obj="doc" var="childList"/>
> <for-each collection="childList" member="childNode">
> <nodeType var="nodeType" obj="childNode"/>
> <if><equals actual="nodeType" expected="8"/>
> <attributes obj="childNode" var="attrList"/>
> <assertNull actual="attrList" id="attributesNull"/>
> </if>
> </for-each>
> <createComment var="childNode" obj="doc" data='"This is a comment"'/>
> <attributes obj="childNode" var="attrList"/>
> <assertNull actual="attrList" id="createdAttributesNull"/>
