Changeset 222554 in webkit
- Timestamp:
- Sep 27, 2017, 8:32:55 AM (8 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r222553 r222554 1 2017-09-27 Antti Koivisto <antti@apple.com> 2 3 REGRESSION (r222040): Crash navigating out of gfycat.com url 4 https://bugs.webkit.org/show_bug.cgi?id=177531 5 6 Reviewed by Geoff Garen. 7 8 * fast/animation/animation-element-removal-expected.txt: Added. 9 * fast/animation/animation-element-removal.html: Added. 10 1 11 2017-09-27 Per Arne Vollan <pvollan@apple.com> 2 12 -
trunk/Source/WebCore/ChangeLog
r222551 r222554 1 2017-09-27 Antti Koivisto <antti@apple.com> 2 3 REGRESSION (r222040): Crash navigating out of gfycat.com url 4 https://bugs.webkit.org/show_bug.cgi?id=177531 5 <rdar://problem/34602601> 6 7 Reviewed by Geoff Garen. 8 9 Animation structures are normally removed when the render tree is torn down. 10 However there are cases where we can instantiate animation without creating a renderer 11 and we need to make sure animations are canceled in these cases too. 12 13 CompositeAnimations should also ref the element but that can be done separately. 14 15 Test: fast/animation/animation-element-removal.html 16 17 * dom/Element.cpp: 18 (WebCore::Element::removedFrom): 19 20 Ensure animations are canceled when element is removed from the tree. 21 22 (WebCore::Element::clearHasPendingResources): 23 (WebCore::Element::hasCSSAnimation const): 24 (WebCore::Element::setHasCSSAnimation): 25 (WebCore::Element::clearHasCSSAnimation): 26 27 Add a bit so we don't need to do hash lookups for every removal. 28 29 * dom/Element.h: 30 * dom/ElementRareData.h: 31 (WebCore::ElementRareData::hasCSSAnimation const): 32 (WebCore::ElementRareData::setHasCSSAnimation): 33 (WebCore::ElementRareData::ElementRareData): 34 * page/animation/CSSAnimationController.cpp: 35 (WebCore::CSSAnimationControllerPrivate::ensureCompositeAnimation): 36 37 Test for the bit. 38 39 (WebCore::CSSAnimationControllerPrivate::clear): 40 (WebCore::CSSAnimationController::cancelAnimations): 41 1 42 2017-09-27 Joanmarie Diggs <jdiggs@igalia.com> 2 43 -
trunk/Source/WebCore/dom/Element.cpp
r222392 r222554 30 30 #include "Attr.h" 31 31 #include "AttributeChangeInvalidation.h" 32 #include "CSSAnimationController.h" 32 33 #include "CSSParser.h" 33 34 #include "Chrome.h" … … 1765 1766 document().accessSVGExtensions().removeElementFromPendingResources(this); 1766 1767 1768 Frame* frame = document().frame(); 1769 if (frame) 1770 frame->animation().cancelAnimations(*this); 1767 1771 1768 1772 #if PLATFORM(MAC) 1769 if ( Frame* frame = document().frame())1773 if (frame) 1770 1774 frame->mainFrame().removeLatchingStateForTarget(*this); 1771 1775 #endif … … 3532 3536 void Element::clearHasPendingResources() 3533 3537 { 3534 ensureElementRareData().setHasPendingResources(false); 3538 if (!hasRareData()) 3539 return; 3540 elementRareData()->setHasPendingResources(false); 3541 } 3542 3543 bool Element::hasCSSAnimation() const 3544 { 3545 return hasRareData() && elementRareData()->hasCSSAnimation(); 3546 } 3547 3548 void Element::setHasCSSAnimation() 3549 { 3550 ensureElementRareData().setHasCSSAnimation(true); 3551 } 3552 3553 void Element::clearHasCSSAnimation() 3554 { 3555 if (!hasRareData()) 3556 return; 3557 elementRareData()->setHasCSSAnimation(false); 3535 3558 } 3536 3559 -
trunk/Source/WebCore/dom/Element.h
r222259 r222554 450 450 virtual void buildPendingResource() { }; 451 451 452 bool hasCSSAnimation() const; 453 void setHasCSSAnimation(); 454 void clearHasCSSAnimation(); 455 452 456 #if ENABLE(FULLSCREEN_API) 453 457 WEBCORE_EXPORT bool containsFullScreenElement() const; -
trunk/Source/WebCore/dom/ElementRareData.h
r222259 r222554 107 107 bool hasPendingResources() const { return m_hasPendingResources; } 108 108 void setHasPendingResources(bool has) { m_hasPendingResources = has; } 109 110 bool hasCSSAnimation() const { return m_hasCSSAnimation; } 111 void setHasCSSAnimation(bool value) { m_hasCSSAnimation = value; } 109 112 110 113 private: … … 119 122 #endif 120 123 unsigned m_hasPendingResources : 1; 124 unsigned m_hasCSSAnimation : 1; 121 125 unsigned m_childrenAffectedByHover : 1; 122 126 unsigned m_childrenAffectedByDrag : 1; … … 161 165 #endif 162 166 , m_hasPendingResources(false) 167 , m_hasCSSAnimation(false) 163 168 , m_childrenAffectedByHover(false) 164 169 , m_childrenAffectedByDrag(false) -
trunk/Source/WebCore/page/animation/CSSAnimationController.cpp
r222129 r222554 86 86 CompositeAnimation& CSSAnimationControllerPrivate::ensureCompositeAnimation(Element& element) 87 87 { 88 element.setHasCSSAnimation(); 89 88 90 auto result = m_compositeAnimations.ensure(&element, [&] { 89 91 return CompositeAnimation::create(*this); … … 98 100 bool CSSAnimationControllerPrivate::clear(Element& element) 99 101 { 102 ASSERT(element.hasCSSAnimation() == m_compositeAnimations.contains(&element)); 103 104 if (!element.hasCSSAnimation()) 105 return false; 106 element.clearHasCSSAnimation(); 107 100 108 auto it = m_compositeAnimations.find(&element); 101 109 if (it == m_compositeAnimations.end())
Note:
See TracChangeset
for help on using the changeset viewer.