I'm not sure. getValues returns an array of the itemValue of the nodes
in the NodeList. Something that can be trivially implemented as:

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







On Fri, Mar 30, 2012 at 14:21, Ojan Vafai <[email protected]> wrote:
> http://www.whatwg.org/specs/web-apps/current-work/multipage/common-dom-interfaces.html#propertynodelist
>
> 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

Reply via email to