Changeset 252041 in webkit


Ignore:
Timestamp:
Nov 4, 2019 9:13:57 PM (4 years ago)
Author:
Alan Bujtas
Message:

[iOS] fast/events/touch/ios/content-observation/click-event-suppression-on-content-change.html is failing
https://bugs.webkit.org/show_bug.cgi?id=203838
<rdar://problem/55664976>

Reviewed by Wenson Hsieh.

Unable to reproduce. Replace the magic 50ms timeouts with the more robust UIHelper.waitForDoubleTapDelay().

  • fast/events/touch/ios/content-observation/click-event-suppression-on-content-change.html:
Location:
trunk/LayoutTests
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r252038 r252041  
     12019-11-04  Zalan Bujtas  <zalan@apple.com>
     2
     3        [iOS] fast/events/touch/ios/content-observation/click-event-suppression-on-content-change.html is failing
     4        https://bugs.webkit.org/show_bug.cgi?id=203838
     5        <rdar://problem/55664976>
     6
     7        Reviewed by Wenson Hsieh.
     8
     9        Unable to reproduce. Replace the magic 50ms timeouts with the more robust UIHelper.waitForDoubleTapDelay().
     10
     11        * fast/events/touch/ios/content-observation/click-event-suppression-on-content-change.html:
     12
    1132019-11-04  Ryosuke Niwa  <rniwa@webkit.org>
    214
  • trunk/LayoutTests/fast/events/touch/ios/content-observation/click-event-suppression-on-content-change.html

    r246426 r252041  
    4747    output("Tapping once");
    4848    await UIHelper.tapAt(150, 150);
    49     await UIHelper.delayFor(50);
     49    await UIHelper.waitForDoubleTapDelay();
    5050
    5151    output("Tapping again");
    5252    await UIHelper.tapAt(150, 150);
    53     await UIHelper.delayFor(50);
     53    await UIHelper.waitForDoubleTapDelay();
    5454
    5555    output("Tapping out");
    5656    await UIHelper.tapAt(150, 50);
    57     await UIHelper.delayFor(50);
     57    await UIHelper.waitForDoubleTapDelay();
    5858
    5959    output("Enabling mutation on mouseover");
     
    6262    output("Tapping once");
    6363    await UIHelper.tapAt(150, 150);
    64     await UIHelper.delayFor(50);
     64    await UIHelper.waitForDoubleTapDelay();
    6565
    6666    output("Tapping again");
    6767    await UIHelper.tapAt(150, 150);
    68     await UIHelper.delayFor(50);
     68    await UIHelper.waitForDoubleTapDelay();
    6969
    7070    document.querySelector('#output').innerHTML += outputText;
Note: See TracChangeset for help on using the changeset viewer.