You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expressions like "whose [...] instance of Array" are ungrammatical
It's unclear whether all conditions of the list must hold, or a single one suffices
Arguments objects do not have a toString own property. They inherit a toString property but its value isn't a string, it's a function.
What this probably meant was Call(%Object.prototype.toString%, collection), but of course this would still consider ({[Symbol.toStringTag]: "Arguments"}) as an Arguments object even if that's not the case.
The text was updated successfully, but these errors were encountered:
https://w3c.github.io/webdriver/#dfn-collection
Problems:
Arguments
objects do not have atoString
own property. They inherit atoString
property but its value isn't a string, it's a function.What this probably meant was Call(%Object.prototype.toString%, collection), but of course this would still consider
({[Symbol.toStringTag]: "Arguments"})
as an Arguments object even if that's not the case.The text was updated successfully, but these errors were encountered: