Bug 65885 - Array.prototype.indexOf called on undefined should throw
Summary: Array.prototype.indexOf called on undefined should throw
Status: RESOLVED DUPLICATE of bug 64679
Alias: None
Product: WebKit
Classification: Unclassified
Component: JavaScriptCore (show other bugs)
Version: 528+ (Nightly build)
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-08-08 15:56 PDT by Paul Irish
Modified: 2011-08-09 09:51 PDT (History)
1 user (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Paul Irish 2011-08-08 15:56:28 PDT
[].indexOf.call(undefined, 6);

^ should throw a TypeError according to spec....

from: http://es5.github.com/#x15.4.4.14

1. Let O be the result of calling ToObject passing the `this` value as the argument.

and from the ToObject definition http://es5.github.com/#x9.9 ...

if ArgumentType is Undefined, then Throw a TypeError exception
Comment 1 Paul Irish 2011-08-08 15:59:12 PDT
Current behavior: JSC returns -1. V8 throws TypeError.
Comment 2 Mark Hahnenberg 2011-08-09 09:51:31 PDT

*** This bug has been marked as a duplicate of bug 64679 ***