| Summary: | [ Mac ] fast/animation/request-animation-frame-timestamps.html is flaky failing. | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Product: | WebKit | Reporter: | Jason Lawrence <Lawrence.j> | ||||||||||
| Component: | Animations | Assignee: | Said Abou-Hallawa <sabouhallawa> | ||||||||||
| Status: | RESOLVED FIXED | ||||||||||||
| Severity: | Normal | CC: | dino, graouts, graouts, sabouhallawa, simon.fraser, webkit-bot-watchers-bugzilla, webkit-bug-importer | ||||||||||
| Priority: | P2 | Keywords: | InRadar | ||||||||||
| Version: | WebKit Nightly Build | ||||||||||||
| Hardware: | Unspecified | ||||||||||||
| OS: | Unspecified | ||||||||||||
| Attachments: |
|
||||||||||||
|
Description
Jason Lawrence
2020-03-13 14:42:28 PDT
I have marked this test as failing while this issue is investigated here: https://trac.webkit.org/changeset/258435/webkit Created attachment 398452 [details]
Patch
This os the correct history link. The above one is for the test http/tests/media/user-gesture-preserved-across-xmlhttprequest.html: https://results.webkit.org/?suite=layout-tests&test=fast%2Fanimation%2Frequest-animation-frame-timestamps.html&platform=mac Created attachment 398476 [details]
Patch
Created attachment 398482 [details]
Patch
Comment on attachment 398482 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=398482&action=review > LayoutTests/fast/animation/request-animation-frame-timestamps.html:12 > + while (Date.now()-start < millis) {} Could you use `performance.now()` here instead? > LayoutTests/fast/animation/request-animation-frame-timestamps.html:17 > + window.requestAnimationFrame(function(timestamp) { You're mixing arrow-syntax and `function`, could you use a consistent style? > LayoutTests/fast/animation/request-animation-frame-timestamps.html:37 > + Promise.all([firstRequestAnimationFrame(), secondRequestAnimationFrame()]).then((timestamps) => { Nit: no need for the `()` around `timestamps`. You could also use `await` for Promise.all() instead of `then()`. Created attachment 398532 [details]
Patch
Committed r261193: <https://trac.webkit.org/changeset/261193> All reviewed patches have been landed. Closing bug and clearing flags on attachment 398532 [details]. |