Changeset 269366 in webkit


Ignore:
Timestamp:
Nov 4, 2020 9:40:10 AM (3 years ago)
Author:
graouts@webkit.org
Message:

[ macOS ] webanimations/accelerated-animation-easing-update-after-pause.html is a flaky ImageOnlyFailure
https://bugs.webkit.org/show_bug.cgi?id=216481
<rdar://problem/68858100>

Reviewed by Dean Jackson.

Improve this test's fidelity by making the animation much longer (1 day) and ensuring we always wait one presentation
and one rendering update before committing any changes to the animations.

  • platform/mac/TestExpectations:
  • webanimations/accelerated-animation-easing-update-after-pause.html:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r269363 r269366  
     12020-11-04  Antoine Quint  <graouts@webkit.org>
     2
     3        [ macOS ] webanimations/accelerated-animation-easing-update-after-pause.html is a flaky ImageOnlyFailure
     4        https://bugs.webkit.org/show_bug.cgi?id=216481
     5        <rdar://problem/68858100>
     6
     7        Reviewed by Dean Jackson.
     8
     9        Improve this test's fidelity by making the animation much longer (1 day) and ensuring we always wait one presentation
     10        and one rendering update before committing any changes to the animations.
     11
     12        * platform/mac/TestExpectations:
     13        * webanimations/accelerated-animation-easing-update-after-pause.html:
     14
    1152020-11-04  Diego Pino Garcia  <dpino@igalia.com>
    216
  • trunk/LayoutTests/platform/mac/TestExpectations

    r269361 r269366  
    21982198[ BigSur+ ] fast/images/animated-gif-loop-count.html [ ImageOnlyFailure ]
    21992199
    2200 webkit.org/b/216481 webanimations/accelerated-animation-easing-update-after-pause.html [ Pass ImageOnlyFailure ]
    2201 
    22022200webkit.org/b/216492 imported/w3c/web-platform-tests/selection/extend-20.html [ Slow ]
    22032201webkit.org/b/216492 imported/w3c/web-platform-tests/selection/extend-00.html [ Slow ]
  • trunk/LayoutTests/webanimations/accelerated-animation-easing-update-after-pause.html

    r266789 r269366  
    3737    const keyframes = { "transform": "translateX(700px)" };
    3838    const easing = "cubic-bezier(0,1,0,1)";
    39     const duration = 10000;
     39    const duration = 24 * 60 * 60 * 1000;
    4040
    4141    // Create two animations, a test which will change easing during playback and a reference which
     
    5656
    5757    // Wait a frame and resume the animations.
     58    await UIHelper.ensurePresentationUpdate();
    5859    await UIHelper.renderingUpdate();
    5960    for (let animation of document.getAnimations())
Note: See TracChangeset for help on using the changeset viewer.