Changeset 151000 in webkit


Ignore:
Timestamp:
May 30, 2013 6:52:47 PM (11 years ago)
Author:
barraclough@apple.com
Message:

fast/js/date-DST-time-cusps.html fails after http://trac.webkit.org/changeset/150833
https://bugs.webkit.org/show_bug.cgi?id=116895
<rdar://problem/4777813> Safari incorrectly handles times that shouldn't exist
https://bugs.webkit.org/show_bug.cgi?id=11157

Reviewed by Alexey Proskuryakov.

Accidental progression, updating results to expect success.

  • TestExpectations:
    • Remove expectations of failure.
  • fast/js/script-tests/date-DST-time-cusps.js:
    • Prefer the latter option for non-existent time (due to clock rolling forward).
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r150987 r151000  
     12013-05-28  Gavin Barraclough  <barraclough@apple.com>
     2
     3        fast/js/date-DST-time-cusps.html fails after http://trac.webkit.org/changeset/150833
     4        https://bugs.webkit.org/show_bug.cgi?id=116895
     5        <rdar://problem/4777813> Safari incorrectly handles times that shouldn't exist
     6        https://bugs.webkit.org/show_bug.cgi?id=11157
     7
     8        Reviewed by Alexey Proskuryakov.
     9
     10        Accidental progression, updating results to expect success.
     11
     12        * TestExpectations:
     13            - Remove expectations of failure.
     14        * fast/js/script-tests/date-DST-time-cusps.js:
     15            - Prefer the latter option for non-existent time (due to clock rolling forward).
     16
    1172013-05-30  Tim Horton  <timothy_horton@apple.com>
    218
  • trunk/LayoutTests/TestExpectations

    r150848 r151000  
    1616# media/W3C/video/networkState/networkState_during_progress.html is flaky
    1717webkit.org/b/76280 media/W3C/video/networkState/networkState_during_progress.html [ Pass Failure ]
    18 
    19 # fast/js/date-DST-time-cusps.html fails after http://trac.webkit.org/changeset/150833
    20 webkit.org/b/116895 fast/js/date-DST-time-cusps.html [ Failure ]
  • trunk/LayoutTests/fast/js/script-tests/date-DST-time-cusps.js

    r98407 r151000  
    44
    55description(
    6 "For times that shouldn't happen we currently go back an hour, but in reality we would like to go forward an hour.  This has been filed as a radar: 4777813"
    7 );
    8 
    9 description(
    10 "For times that happen twice the behavior of all major browsers seems to be to pick the second occurance, i.e. Standard Time not Daylight Time"
     6"For times that happen twice the behavior of all major browsers seems to be to pick the second occurrance, i.e. Standard Time not Daylight Time"
    117);
    128
    139var testCases = [];
    1410if ((new Date(2009, 9, 1)).toString().match("PDT")) {
    15     testCases.push(["(new Date(1982, 2, 14, 2, 10)).getHours()", "1"]);
    16     testCases.push(["(new Date(1982, 2, 14, 2)).getHours()", "1"]);
     11    testCases.push(["(new Date(1982, 2, 14, 2, 10)).getHours()", "3"]);
     12    testCases.push(["(new Date(1982, 2, 14, 2)).getHours()", "3"]);
    1713    testCases.push(["(new Date(1982, 11, 7, 1, 10)).getTimezoneOffset()", "480"]);
    1814    testCases.push(["(new Date(1982, 11, 7, 1)).getTimezoneOffset()", "480"]);
Note: See TracChangeset for help on using the changeset viewer.