⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 140501 in webkit


Ignore:
Timestamp:
Jan 22, 2013, 8:21:04 PM (14 years ago)
Author:
tkent@chromium.org
Message:

[Chromium] Fix calendar-picker-key-operations.html
https://bugs.webkit.org/show_bug.cgi?id=101408

Reviewed by Kentaro Hara.

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

We need to apply the waitUntilClosing idiom because picker closing
operation is asynchronous.

  • platform/chromium-win/platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations-expected.txt:

Fix a failure.

Location:
trunk/LayoutTests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r140500 r140501  
     12013-01-22  Kent Tamura  <tkent@chromium.org>
     2
     3        [Chromium] Fix calendar-picker-key-operations.html
     4        https://bugs.webkit.org/show_bug.cgi?id=101408
     5
     6        Reviewed by Kentaro Hara.
     7
     8        * platform/chromium/TestExpectations:
     9        * platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html:
     10        We need to apply the waitUntilClosing idiom because picker closing
     11        operation is asynchronous.
     12        * platform/chromium-win/platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations-expected.txt:
     13        Fix a failure.
     14
    1152013-01-22  Yoshifumi Inoue  <yosin@chromium.org>
    216
  • trunk/LayoutTests/platform/chromium-win/platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations-expected.txt

    r135516 r140501  
    5252PASS focusedElement() is ".year-month-button[value=<<]"
    5353PASS focusedElement() is ".clear-button[value=<<CalendarClear>>]"
    54 FAIL document.getElementById("mock-page-popup") should be null. Was [object HTMLIFrameElement].
     54PASS document.getElementById("mock-page-popup") is null
    5555PASS document.getElementById("date").value is "1999-12-26"
    5656PASS F4 opened picker.
  • trunk/LayoutTests/platform/chromium/TestExpectations

    r140500 r140501  
    41014101webkit.org/b/101377 [ Linux MountainLion ] platform/chromium-linux/fast/text/international/complex-joining-using-gpos.html [ Failure ImageOnlyFailure Pass Crash ]
    41024102
    4103 webkit.org/b/101408 [ Mac ] platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html [ Failure ]
    41044103webkit.org/b/101408 platform/chromium/fast/forms/calendar-picker/calendar-picker-mouse-operations.html [ Failure Pass ]
    41054104
  • trunk/LayoutTests/platform/chromium/fast/forms/calendar-picker/calendar-picker-key-operations.html

    r134180 r140501  
    112112
    113113    eventSender.keyDown('\x1B');
     114    waitUntilClosing(test2AfterClosing);
     115}
     116
     117function test2AfterClosing() {
    114118    shouldBeNull('document.getElementById("mock-page-popup")');
    115119    shouldBe('document.getElementById("date").value', '"1999-12-26"');
Note: See TracChangeset for help on using the changeset viewer.