| Summary: | Fix grammar issue in TypeError attempting to change an unconfigurable property | ||||||
|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Joseph Pecoraro <joepeck> | ||||
| Component: | JavaScriptCore | Assignee: | Joseph Pecoraro <joepeck> | ||||
| Status: | RESOLVED FIXED | ||||||
| Severity: | Normal | CC: | benjamin, bfulgham, commit-queue, ggaren, mark.lam | ||||
| Priority: | P2 | ||||||
| Version: | 528+ (Nightly build) | ||||||
| Hardware: | Unspecified | ||||||
| OS: | Unspecified | ||||||
| Attachments: |
|
||||||
Created attachment 256457 [details]
[PATCH] Proposed Fix
Comment on attachment 256457 [details]
[PATCH] Proposed Fix
r=me. Thank you for fixing this!
Comment on attachment 256457 [details] [PATCH] Proposed Fix Clearing flags on attachment: 256457 Committed r186584: <http://trac.webkit.org/changeset/186584> All reviewed patches have been landed. Closing bug. |
* SUMMARY Fix grammar issue in TypeError attempting to change an unconfigurable property. * TESTs js> Object.defineProperty(function(){}, "name", {configurable:true}) => TypeError: Attempting to configurable attribute of unconfigurable property. js> Object.defineProperty(Object.defineProperty({}, 'foo', {value: 1}), 'foo', {value:2, configurable: true}) => TypeError: Attempting to configurable attribute of unconfigurable property. * NOTES - Repeated in a few different places (e.g. JSFunction and JSObject above). Not sure how to trigger the StringObject instance.