Changeset 91305 in webkit


Ignore:
Timestamp:
Jul 19, 2011 2:51:34 PM (13 years ago)
Author:
barraclough@apple.com
Message:

https://bugs.webkit.org/show_bug.cgi?id=64809
REGRESSION (r91114-r91116): fast/dom/error-to-string-stack-overflow.html failing on Windows 7 Release (Tests)

Reviewed by Adam Roben.

I think this just needs new results. The test deliberately triggers a stack overflow,
and doesn't catch it, so the error is printed to the console. Previously RangeError
had the wrong prototype, and didn't convert the error into a useful error message,
printing a blank line in the console. Since r91116 we inherit from Error correctly,
and print the error to the console.

  • fast/dom/error-to-string-stack-overflow-expected.txt:
  • fast/js/script-tests/object-prototype-properties.js:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r91303 r91305  
     12011-07-19  Gavin Barraclough  <barraclough@apple.com>
     2
     3        https://bugs.webkit.org/show_bug.cgi?id=64809
     4        REGRESSION (r91114-r91116): fast/dom/error-to-string-stack-overflow.html failing on Windows 7 Release (Tests)
     5
     6        Reviewed by Adam Roben.
     7
     8        I think this just needs new results. The test deliberately triggers a stack overflow,
     9        and doesn't catch it, so the error is printed to the console. Previously RangeError
     10        had the wrong prototype, and didn't convert the error into a useful error message,
     11        printing a blank line in the console. Since r91116 we inherit from Error correctly,
     12        and print the error to the console.
     13
     14        * fast/dom/error-to-string-stack-overflow-expected.txt:
     15        * fast/js/script-tests/object-prototype-properties.js:
     16
    1172011-07-19  Ryosuke Niwa  <rniwa@webkit.org>
    218
  • trunk/LayoutTests/fast/dom/error-to-string-stack-overflow-expected.txt

    r50160 r91305  
    1 CONSOLE MESSAGE: line 17:
     1CONSOLE MESSAGE: line 17: RangeError: Maximum call stack size exceeded.
    22Regression test for https://bugs.webkit.org/show_bug.cgi?id=30774. This test passes if it doesn't crash.
    33
Note: See TracChangeset for help on using the changeset viewer.