Summary: | [ iOS ] webanimations/accelerated-animation-with-easing.html is still flaky | ||||||||
---|---|---|---|---|---|---|---|---|---|
Product: | WebKit | Reporter: | Hector Lopez <hector_i_lopez> | ||||||
Component: | Animations | Assignee: | Antoine Quint <graouts> | ||||||
Status: | RESOLVED FIXED | ||||||||
Severity: | Normal | CC: | dino, graouts, graouts, simon.fraser, tsavell, webkit-bot-watchers-bugzilla, webkit-bug-importer | ||||||
Priority: | P2 | Keywords: | InRadar | ||||||
Version: | WebKit Nightly Build | ||||||||
Hardware: | Unspecified | ||||||||
OS: | Unspecified | ||||||||
Attachments: |
|
Description
Hector Lopez
2020-07-14 15:42:03 PDT
Created attachment 404297 [details]
Patch
Comment on attachment 404297 [details] Patch Clearing flags on attachment: 404297 Committed r264378: <https://trac.webkit.org/changeset/264378> This test was landed flaky, fix attempted in r263761, but it's still flaky. Difference is a vertical red line. Created attachment 405561 [details]
Patch
Comment on attachment 405561 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=405561&action=review > Source/WebKit/ChangeLog:18 > + This fixes the test added originally in r263506 which would only work flakily, a sympton of this Typo: symptom. > Source/WebKit/WebProcess/WebPage/RemoteLayerTree/PlatformCAAnimationRemote.mm:156 > +static void encodeTimingFunction(IPC::Encoder& encoder, TimingFunction* timingFunction) I think these methods should go in WebCoreArgumentCoders. > Source/WebKit/WebProcess/WebPage/RemoteLayerTree/PlatformCAAnimationRemote.mm:239 > + encodeTimingFunction(encoder, timingFunction.get()); Which would just make this encoder << timingFunction.get(); Committed r265098: <https://trac.webkit.org/changeset/265098> Comment on attachment 405561 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=405561&action=review >> Source/WebKit/WebProcess/WebPage/RemoteLayerTree/PlatformCAAnimationRemote.mm:156 >> +static void encodeTimingFunction(IPC::Encoder& encoder, TimingFunction* timingFunction) > > I think these methods should go in WebCoreArgumentCoders. This should take a const TimingFunction& |