- From: Joseph Kesselman <keshlam@us.ibm.com>
- Date: Thu, 25 Jan 2001 09:29:25 -0500
- To: "Joe D Willliams" <JOEDWIL@earthlink.net>
- Cc: <www-dom@w3.org>
It looks like someone is confusing this setter method Node setNamedItemNS(in Node arg) raises(DOMException); with its corresponding getter: Node getNamedItemNS(in DOMString namespaceURI, in DOMString localName); Note that the arguments are different. In the setter, we're inserting a particular Node, and using that node's name -- which is a two-part value made up of its localname and its namespaceURI, as stored in the node itself. In the getter, we're specifying that two-part name and expect the matching node (if any) to be returned.
Received on Thursday, 25 January 2001 09:29:31 UTC