[heycam/webidl] Investigate why no [[HasInstance]] is defined for named constructors (#282)

I'm aware that [[HasInstance]] is deprecated, yet it's defined for interface objects.

The following is the observed behavior in FF and Chrome:

```js
new Image() instanceof HTMLImageElement;
// => true
new Image() instanceof Image
// => true
```

The latter especially doesn't seem to be explained by what's in the spec.

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/heycam/webidl/issues/282

Received on Tuesday, 24 January 2017 22:42:30 UTC