WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
164913
Crash in WebCore::Animation::animationsMatch
https://bugs.webkit.org/show_bug.cgi?id=164913
Summary
Crash in WebCore::Animation::animationsMatch
Michael Catanzaro
Reported
2016-11-18 04:40:58 PST
I hit this crash when loading Epiphany's new tab page yesterday. We have 24 reports of it: Truncated backtrace: Thread no. 1 (10 frames) #0 WebCore::Animation::animationsMatch at /usr/src/debug/webkitgtk-2.14.1/Source/WebCore/platform/animation/Animation.cpp:138 #1 WebCore::Animation::operator== at /usr/src/debug/webkitgtk-2.14.1/Source/WebCore/platform/animation/Animation.h:168 #2 WebCore::Animation::operator!= at /usr/src/debug/webkitgtk-2.14.1/Source/WebCore/platform/animation/Animation.h:169 #3 WebCore::AnimationList::operator== at /usr/src/debug/webkitgtk-2.14.1/Source/WebCore/platform/animation/AnimationList.cpp:59 #4 WTF::arePointingToEqualData<std::unique_ptr<WebCore::AnimationList, std::default_delete<WebCore::AnimationList> > > at /usr/src/debug/webkitgtk-2.14.1/Source/WTF/wtf/PointerComparison.h:33 #5 WebCore::StyleRareNonInheritedData::operator== at /usr/src/debug/webkitgtk-2.14.1/Source/WebCore/rendering/style/StyleRareNonInheritedData.cpp:258 #6 WebCore::DataRef<WebCore::StyleRareNonInheritedData>::operator== at /usr/src/debug/webkitgtk-2.14.1/Source/WebCore/rendering/style/DataRef.h:51 #7 WebCore::RenderStyle::operator== at /usr/src/debug/webkitgtk-2.14.1/Source/WebCore/rendering/style/RenderStyle.cpp:305 #8 WebCore::RenderStyle::operator!= at /usr/src/debug/webkitgtk-2.14.1/Source/WebCore/rendering/style/RenderStyle.h:549 #9 WebCore::Style::determineChange at /usr/src/debug/webkitgtk-2.14.1/Source/WebCore/style/StyleChange.cpp:63 There is a detailed backtrace attached to
comment #1
in the downstream bug.
Attachments
HTML of my overview page
(6.22 KB, text/html)
2016-11-18 08:34 PST
,
Michael Catanzaro
no flags
Details
CSS for the page
(6.51 KB, text/css)
2016-11-18 08:35 PST
,
Michael Catanzaro
no flags
Details
Updated backtrace (2019)
(123.49 KB, text/plain)
2019-01-25 11:46 PST
,
Michael Catanzaro
no flags
Details
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Michael Catanzaro
Comment 1
2016-11-18 04:42:08 PST
(In reply to
comment #0
)
> There is a detailed backtrace attached to
comment #1
in the downstream bug.
In particular: Program terminated with signal SIGSEGV, Segmentation fault. #0 0x00007fd56123212b in WebCore::Animation::animationsMatch (this=0x7fd54b2b1d80, other=..., matchPlayStates=matchPlayStates@entry=true) at /usr/src/debug/webkitgtk-2.14.1/Source/WebCore/platform/animation/Animation.cpp:138 138 && *(m_timingFunction.get()) == *(other.m_timingFunction.get())
Simon Fraser (smfr)
Comment 2
2016-11-18 08:10:32 PST
Can you attach the HTML/CSS that triggers this?
Michael Catanzaro
Comment 3
2016-11-18 08:33:46 PST
(In reply to
comment #2
)
> Can you attach the HTML/CSS that triggers this?
I can attach the HTML/CSS generated by my overview page (which could be slightly different from what it was yesterday if my top 10 visited sites have changed since yesterday; possible since I've cleared my history recently), but it is some rare race and definitely not a reliable reproducer.
Michael Catanzaro
Comment 4
2016-11-18 08:34:48 PST
Created
attachment 295153
[details]
HTML of my overview page
Michael Catanzaro
Comment 5
2016-11-18 08:35:15 PST
Created
attachment 295154
[details]
CSS for the page
Simon Fraser (smfr)
Comment 6
2016-11-18 11:57:13 PST
Can you reproduce the crash with this HTML and CSS?
Michael Catanzaro
Comment 7
2016-11-18 12:32:31 PST
(In reply to
comment #6
)
> Can you reproduce the crash with this HTML and CSS?
No, I do not have a reproducer. I just happen to remember it crashed yesterday displaying about:overview (which does not even contain any animations). FWIW there is a FIXME in TreeResolver::createAnimatedElementUpdate one line beneath the crash: update.change = determineChange(rendererToUpdate->style(), *animatedStyle); // If animation forces render tree reconstruction pass the original style. The animation will be applied on renderer construction. // FIXME: We should always use the animated style here. update.style = update.change == Detach ? WTFMove(newStyle) : WTFMove(animatedStyle); But that looks probably unrelated.
Michael Catanzaro
Comment 8
2017-02-03 14:06:48 PST
***
Bug 167706
has been marked as a duplicate of this bug. ***
Michael Catanzaro
Comment 9
2017-02-03 14:08:15 PST
This also happens randomly (and rarely) in the middle of playing YouTube videos.
Michael Catanzaro
Comment 10
2017-02-09 15:29:43 PST
Here's a different crash when playing a YouTube video. I presume it's a related issue.
Michael Catanzaro
Comment 11
2019-01-25 11:46:36 PST
Created
attachment 360138
[details]
Updated backtrace (2019)
Michael Catanzaro
Comment 12
2019-10-09 08:48:36 PDT
***
Bug 166923
has been marked as a duplicate of this bug. ***
Michael Catanzaro
Comment 13
2019-10-09 08:48:52 PDT
***
Bug 197985
has been marked as a duplicate of this bug. ***
Michael Catanzaro
Comment 14
2019-10-09 08:49:20 PDT
(In reply to Michael Catanzaro from
comment #12
)
> ***
Bug 166923
has been marked as a duplicate of this bug. ***
Zan had a test patch in this bug.
Fujii Hironori
Comment 15
2020-11-12 23:31:09 PST
WebCore::Animation is a RefCounted object that is thread-unsafe. TextureMapperAnimation was shared between the main thread and ThreadedCompositor thread. WebCore::Animation object should be cloned and TextureMapperAnimation should have an isoleted copy of WebCore::Animation. Zan's patch (
Bug 166923 comment 1
) was aiming that.
r248406
(
Bug 200533
) changed TextureMapperAnimation to have RefPtr<TimingFunction> instead of RefPtr<WebCore::Animation>, and call TimingFunction::clone(). I think this crash was fixed by
r248406
.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug