Index: getAttributeNS01.xml =================================================================== RCS file: /sources/public/2001/DOM-Test-Suite/tests/level2/core/getAttributeNS01.xml,v retrieving revision 1.5 diff -u -r1.5 getAttributeNS01.xml --- getAttributeNS01.xml 4 Dec 2002 00:42:46 -0000 1.5 +++ getAttributeNS01.xml 19 Nov 2003 05:05:23 -0000 @@ -1,48 +1,50 @@ - - - - - - -getAttributeNS01 -NIST - - The "getAttributeNS(namespaceURI,localName)" method retrieves an - attribute value by local name and NamespaceURI. - - Retrieve the first "emp:address" element. - The value returned by the "getAttributeNS()" method should be the - value "DISTRICT" since the attribute has a default value. - -Mary Brady -2001-08-17 - - - - - - - - - - - - - - - - - + + + + + + +getAttributeNS01 +NIST + + The "getAttributeNS(namespaceURI,localName)" method retrieves an + attribute value by local name and NamespaceURI. + + Retrieve the first "emp:address" element. + The value returned by the "getAttributeNS()" method should be the + value "DISTRICT" since the attribute has a default value. + +Mary Brady +2001-08-17 + + + + + + + + + + + + + + + + + + + Index: hasAttribute02.xml =================================================================== RCS file: /sources/public/2001/DOM-Test-Suite/tests/level2/core/hasAttribute02.xml,v retrieving revision 1.5 diff -u -r1.5 hasAttribute02.xml --- hasAttribute02.xml 4 Dec 2002 00:42:46 -0000 1.5 +++ hasAttribute02.xml 19 Nov 2003 05:05:23 -0000 @@ -1,42 +1,45 @@ - - - - - - -hasAttribute02 -NIST - - The "hasAttribute()" method for an Element should - return true if the element has an attribute with the given name. - - Retrieve the first "address" element and the "hasAttribute()" method - should return true since the attribute "street" has a default value. - -Mary Brady -2001-08-17 - - - - - - - - - - - - + + + + + + +hasAttribute02 +NIST + + The "hasAttribute()" method for an Element should + return true if the element has an attribute with the given name. + + Retrieve the first "address" element and the "hasAttribute()" method + should return true since the attribute "street" has a default value. + +Mary Brady +2001-08-17 + + + + + + + + + + + + + + + Index: hasAttribute04.xml =================================================================== RCS file: /sources/public/2001/DOM-Test-Suite/tests/level2/core/hasAttribute04.xml,v retrieving revision 1.5 diff -u -r1.5 hasAttribute04.xml --- hasAttribute04.xml 4 Dec 2002 00:42:46 -0000 1.5 +++ hasAttribute04.xml 19 Nov 2003 05:05:23 -0000 @@ -1,42 +1,45 @@ - - - - - - -hasAttribute04 -NIST - - The "hasAttribute()" method for an Element should - return true if the element has an attribute with the given name. - - Retrieve the first "address" element and the "hasAttribute()" method - should return true since the element has "domestic" as an attribute. - -Mary Brady -2001-08-17 - - - - - - - - - - - - + + + + + + +hasAttribute04 +NIST + + The "hasAttribute()" method for an Element should + return true if the element has an attribute with the given name. + + Retrieve the first "address" element and the "hasAttribute()" method + should return true since the element has "domestic" as an attribute. + +Mary Brady +2001-08-17 + + + + + + + + + + + + + + + Index: importNode07.xml =================================================================== RCS file: /sources/public/2001/DOM-Test-Suite/tests/level2/core/importNode07.xml,v retrieving revision 1.8 diff -u -r1.8 importNode07.xml --- importNode07.xml 9 Jul 2003 17:41:38 -0000 1.8 +++ importNode07.xml 19 Nov 2003 05:05:23 -0000 @@ -1,60 +1,62 @@ - - - - - - -importNode07 -NIST - - The "importNode(importedNode,deep)" method for a - Document should import the given importedNode into that Document. - The importedNode is of type Element. - If this document defines default attributes for this element name (importedNode), - those default attributes are assigned. - - Create an element whose name is "emp:employee" in a different document. - Invoke method importNode(importedNode,deep) on this document which - defines default attribute for the element name "emp:employee". - Method should return an the imported element with an assigned default attribute. - -Mary Brady -2001-08-17 - - - - - - - - - - - + + + + + + +importNode07 +NIST + + The "importNode(importedNode,deep)" method for a + Document should import the given importedNode into that Document. + The importedNode is of type Element. + If this document defines default attributes for this element name (importedNode), + those default attributes are assigned. + + Create an element whose name is "emp:employee" in a different document. + Invoke method importNode(importedNode,deep) on this document which + defines default attribute for the element name "emp:employee". + Method should return an the imported element with an assigned default attribute. + +Mary Brady +2001-08-17 + + + + + + + + + + + + + - - - - - - - - - - - - + + + + + + + + + + + + Index: namespaceURI01.xml =================================================================== RCS file: /sources/public/2001/DOM-Test-Suite/tests/level2/core/namespaceURI01.xml,v retrieving revision 1.5 diff -u -r1.5 namespaceURI01.xml --- namespaceURI01.xml 4 Dec 2002 00:42:47 -0000 1.5 +++ namespaceURI01.xml 19 Nov 2003 05:05:23 -0000 @@ -1,48 +1,50 @@ - - - - - - -namespaceURI01 -NIST - - The "getNamespaceURI()" method for an Attribute - returns the namespace URI of this node, or null if unspecified. - - Retrieve the first "emp:address" node which has an attribute of "emp:district" - that is specified in the DTD. - Invoke the "getNamespaceURI()" method on the attribute. - The method should return "http://www.nist.gov". - -Mary Brady -2001-08-17 - - - - - - - - - - - - - - - - + + + + + + +namespaceURI01 +NIST + + The "getNamespaceURI()" method for an Attribute + returns the namespace URI of this node, or null if unspecified. + + Retrieve the first "emp:address" node which has an attribute of "emp:district" + that is specified in the DTD. + Invoke the "getNamespaceURI()" method on the attribute. + The method should return "http://www.nist.gov". + +Mary Brady +2001-08-17 + + + + + + + + + + + + + + + + + + Index: removeAttributeNS02.xml =================================================================== RCS file: /sources/public/2001/DOM-Test-Suite/tests/level2/core/removeAttributeNS02.xml,v retrieving revision 1.6 diff -u -r1.6 removeAttributeNS02.xml --- removeAttributeNS02.xml 4 Dec 2002 00:42:47 -0000 1.6 +++ removeAttributeNS02.xml 19 Nov 2003 05:05:23 -0000 @@ -1,64 +1,66 @@ - - - - - - -removeAttributeNS02 -NIST - - The "removeAttributeNS(namespaceURI,localName)" removes an attribute by - local name and namespace URI. If the removed attribute has a - default value it is immediately replaced. The replacing attribute has the same - namespace URI and local name, as well as the original prefix. - - Retrieve the attribute named "emp:local" from emp:address - node, then remove the "emp:local" - attribute by invoking the "removeAttributeNS(namespaceURI,localName)" method. - The "emp:local" attribute has a default value defined in the - DTD file, that value should immediately replace the old - value. - -Mary Brady -2001-08-17 - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + +removeAttributeNS02 +NIST + + The "removeAttributeNS(namespaceURI,localName)" removes an attribute by + local name and namespace URI. If the removed attribute has a + default value it is immediately replaced. The replacing attribute has the same + namespace URI and local name, as well as the original prefix. + + Retrieve the attribute named "emp:local" from emp:address + node, then remove the "emp:local" + attribute by invoking the "removeAttributeNS(namespaceURI,localName)" method. + The "emp:local" attribute has a default value defined in the + DTD file, that value should immediately replace the old + value. + +Mary Brady +2001-08-17 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +