DOM4 now has NodeList inherit from Array (see
http://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#interface-nodelist).
As such, the getValues function is no longer useful. PropertyNodeList
should just be a regular NodeList.
Ojan
PropertyNodeList.prototype.getValues = function() {
return this.map(function(node) {
return node.itemValue;
});
};
If this is commonly used then it might make sense to keep it so that
not every application has to duplicate this code.
erik