Ignore:
Timestamp:
Mar 9, 2012, 5:20:01 PM (13 years ago)
Author:
[email protected]
Message:

Array.prototype.toLocaleString visits elements in wrong order under certain conditions
https://bugs.webkit.org/show_bug.cgi?id=80663

Reviewed by Michael Saboff.

The bug here is actually that we're continuing to process the array after an exception
has been thrown, and that the second value throw is overriding the first.

Source/JavaScriptCore:

  • runtime/ArrayPrototype.cpp:

(JSC::arrayProtoFuncToLocaleString):

LayoutTests:

  • fast/js/array-prototype-properties-expected.txt:
  • fast/js/script-tests/array-prototype-properties.js:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/ChangeLog

    r110342 r110352  
     12012-03-09  Gavin Barraclough  <[email protected]>
     2
     3        Array.prototype.toLocaleString visits elements in wrong order under certain conditions
     4        https://bugs.webkit.org/show_bug.cgi?id=80663
     5
     6        Reviewed by Michael Saboff.
     7
     8        The bug here is actually that we're continuing to process the array after an exception
     9        has been thrown, and that the second value throw is overriding the first.
     10
     11        * runtime/ArrayPrototype.cpp:
     12        (JSC::arrayProtoFuncToLocaleString):
     13
    1142012-03-09  Ryosuke Niwa  <[email protected]>
    215
Note: See TracChangeset for help on using the changeset viewer.