On 5/14/15 1:35 PM, Gijs Kruitbosch wrote:
var foo = [1,2,3]; window.open('bar.html', '_blank', '', foo);in bar.html, checking the type of foo using instanceof with Array fails. For builtin Arrays we now have isArray, but this does not work for custom JS classes or DOM elements.
Actually, DOM constructors have an instanceof behavior that is global-agnostic. So instanceof actually does something sane if the RHS is a built-in DOM constructor.
For JS classes you still have problems, of course. -Boris _______________________________________________ dev-platform mailing list [email protected] https://lists.mozilla.org/listinfo/dev-platform

