Changeset 271208 in webkit
- Timestamp:
- Jan 6, 2021, 12:02:59 PM (6 years ago)
- Location:
- trunk/LayoutTests
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
platform/mac/TestExpectations (modified) (1 diff)
-
webanimations/accelerated-animation-with-easing.html (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r271204 r271208 1 2021-01-06 Antoine Quint <graouts@webkit.org> 2 3 REGRESSION (2020-10-23): webanimations/accelerated-animation-with-easing.html is flaky on Mac Debug 4 https://bugs.webkit.org/show_bug.cgi?id=220187 5 <rdar://problem/72796329> 6 7 Reviewed by Dean Jackson. 8 9 Ensure there were two stable presentation updates prior to starting animations and two after that to ensure 10 they are visually running accelerated. 11 12 * platform/mac/TestExpectations: 13 * webanimations/accelerated-animation-with-easing.html: 14 1 15 2021-01-06 Ryan Haddad <ryanhaddad@apple.com> 2 16 -
trunk/LayoutTests/platform/mac/TestExpectations
r271157 r271208 1814 1814 webkit.org/b/208519 [ Catalina ] webanimations/accelerated-animation-slot-invalidation.html [ Pass ImageOnlyFailure ] 1815 1815 1816 webkit.org/b/220187 [ Debug ] webanimations/accelerated-animation-with-easing.html [ Pass ImageOnlyFailure ]1817 1818 1816 webkit.org/b/208722 imported/w3c/web-platform-tests/html/semantics/embedded-content/media-elements/seeking/seek-to-max-value.htm [ Pass Failure ] 1819 1817 -
trunk/LayoutTests/webanimations/accelerated-animation-with-easing.html
r265098 r271208 27 27 <div id="easing-on-animation-three-keyframes"></div> 28 28 <div id="easing-on-keyframe"></div> 29 <script src="../resources/ui-helper.js"></script> 29 30 <script> 30 31 … … 32 33 if (window.testRunner) 33 34 testRunner.waitUntilDone(); 35 36 await UIHelper.ensureStablePresentationUpdate(); 37 await UIHelper.ensureStablePresentationUpdate(); 34 38 35 39 const animations = []; … … 73 77 74 78 await Promise.all(animations.map(animation => animation.ready)); 75 await new Promise(requestAnimationFrame); 76 await new Promise(requestAnimationFrame); 77 await new Promise(requestAnimationFrame); 79 await UIHelper.ensureStablePresentationUpdate(); 80 await UIHelper.ensureStablePresentationUpdate(); 78 81 79 82 if (window.testRunner)
Note:
See TracChangeset
for help on using the changeset viewer.