WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
55347
"name" and "message" enumerable on *Error.prototype
https://bugs.webkit.org/show_bug.cgi?id=55347
Summary
"name" and "message" enumerable on *Error.prototype
Mark S. Miller
Reported
2011-02-27 20:31:48 PST
See
https://bugzilla.mozilla.org/show_bug.cgi?id=637207
and
http://code.google.com/p/v8/issues/detail?id=1215
For all so-called NativeError.prototype objects, their "name" and "message" properties are enumerable when they shouldn't be. Error itself has this problem for 'message' but not for 'name'. The "message" property's value should be the empty string. But on all the NativeError.prototype objects its value is instead the same as "name" -- the name of the corresponding constructor. I am classifying this as minor since an initialization script can easily repair this using Object.defineProperty.
Attachments
Fix value of message.
(10.91 KB, patch)
2011-08-23 12:23 PDT
,
Gavin Barraclough
sam
: review+
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Gavin Barraclough
Comment 1
2011-06-10 13:34:17 PDT
Fixed in
r88559
Mark S. Miller
Comment 2
2011-08-23 02:39:07 PDT
> Fixed in
r88559
Not quite. In
r93580
I get RangeError.prototype 15.11.7.7 .message doesn't have expected value: should be "" but was "RangeError" TypeError.prototype 15.11.7.7 .message doesn't have expected value: should be "" but was "TypeError" EvalError.prototype 15.11.7.7 .message doesn't have expected value: should be "" but was "EvalError" URIError.prototype 15.11.7.7 .message doesn't have expected value: should be "" but was "URIError" ReferenceError.prototype 15.11.7.7 .message doesn't have expected value: should be "" but was "ReferenceError" SyntaxError.prototype 15.11.7.7 .message doesn't have expected value: should be "" but was "SyntaxError" (From
http://erights.org/tests/testjs/
)
Gavin Barraclough
Comment 3
2011-08-23 12:09:35 PDT
Ooops, scanned this bug too quickly, yep, incomplete job. Reopening. Thanks for catching this Mark.
Gavin Barraclough
Comment 4
2011-08-23 12:23:35 PDT
Created
attachment 104889
[details]
Fix value of message.
Gavin Barraclough
Comment 5
2011-08-23 12:29:00 PDT
Okay, hopefully really should be fixed in
r93624
!
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug