Changeset 141722 in webkit


Ignore:
Timestamp:
Feb 3, 2013 4:47:07 PM (11 years ago)
Author:
tkent@chromium.org
Message:

calendar-picker-key-operations.html is failing
https://bugs.webkit.org/show_bug.cgi?id=108566

Reviewed by Kentaro Hara.

  • platform/chromium/TestExpectations:
  • platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html:

Month.createFromDate supports only UTC Date. Use the Month constructor
with local year and local month.

Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r141715 r141722  
     12013-02-03  Kent Tamura  <tkent@chromium.org>
     2
     3        calendar-picker-key-operations.html is failing
     4        https://bugs.webkit.org/show_bug.cgi?id=108566
     5
     6        Reviewed by Kentaro Hara.
     7
     8        * platform/chromium/TestExpectations:
     9        * platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html:
     10        Month.createFromDate supports only UTC Date. Use the Month constructor
     11        with local year and local month.
     12
    1132013-02-03  Christophe Dumez  <dchris@gmail.com>
    214
  • trunk/LayoutTests/platform/chromium/TestExpectations

    r141680 r141722  
    43424342
    43434343webkit.org/b/108424 media/video-error-does-not-exist.html [ Failure Crash ]
    4344 webkit.org/b/108566 platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html [ Failure ]
    43454344webkit.org/b/108594 [ Debug ] tables/table-section-overflow-clip-crash.html [ Crash ]
  • trunk/LayoutTests/platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html

    r140778 r141722  
    130130    var now = new Date();
    131131    var expectedDate = serializeDate(now.getFullYear(), now.getMonth(), now.getDate());
    132     var expectedMonth = popupWindow.Month.createFromDate(now).toString();
     132    var expectedMonth = (new popupWindow.Month(now.getFullYear(), now.getMonth())).toString();
    133133    return selectedDate() === expectedDate && currentMonth() === expectedMonth;
    134134}
Note: See TracChangeset for help on using the changeset viewer.