Re: [webidl] Check if NodeFilter.length is defined correctly. (#83)

Hmm, more results for:
```
<script>
 console.log(NodeFilter.__proto__ == Function.prototype);
 console.log(typeof NodeFilter);
 console.log(NodeFilter.length);
 console.log(NodeFilter.hasOwnProperty("length"));
</script>
```
IE11: `false, object, undefined, false`
Opera 12.x: `true, function, 0, false`
Firefox and Chrome: `true, function, 0, true`

---
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/issues/83#issuecomment-193693278

Received on Tuesday, 8 March 2016 09:53:02 UTC