Node identity comparisons

Those of you who are steeped in the arcania of the DOM spec may be able to answer this for me.  It seems that a developer would expect (but that expectation may not be justified by the DOM spec), that
accessing the same underlying node would result in objects that would pass an identity comparison.

For example, you would expect that these expressions would be true:

boolean test1 = (docElem == docElem.getFirstChild().getParentNode());
boolean test2 = (docElem.getChildren.item(0) == docElem.getFirstChild());
boolean test3 = (docElem.getFirstChild() == docElem.getFirstChild());

They probably are for most processors, however I'm pretty sure that they would fail for Xerces-COM since it allocates a new COM wrapper for the underlying node on each request, so that multiple
independent objects access the same underlying node.

So, are there any statements in the DOM specs about object identity comparisons?  If object identity comparisons are covered by the spec, then there need to be tests added to check to see if they work
as expected.
	

Received on Friday, 20 April 2001 12:42:09 UTC