OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2001 Peter Kelly (pmk@post.com) | 4 * (C) 2001 Peter Kelly (pmk@post.com) |
5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
6 * (C) 2007 David Smith (catfish.man@gmail.com) | 6 * (C) 2007 David Smith (catfish.man@gmail.com) |
7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc.
All rights reserved. | 7 * Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2012, 2013 Apple Inc.
All rights reserved. |
8 * (C) 2007 Eric Seidel (eric@webkit.org) | 8 * (C) 2007 Eric Seidel (eric@webkit.org) |
9 * | 9 * |
10 * This library is free software; you can redistribute it and/or | 10 * This library is free software; you can redistribute it and/or |
(...skipping 1709 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1720 { | 1720 { |
1721 StyleResolver* styleResolver = document().styleResolver(); | 1721 StyleResolver* styleResolver = document().styleResolver(); |
1722 | 1722 |
1723 if (inActiveDocument() && styleResolver && styleChangeType() < SubtreeStyleC
hange) | 1723 if (inActiveDocument() && styleResolver && styleChangeType() < SubtreeStyleC
hange) |
1724 styleResolver->ensureUpdatedRuleFeatureSet().scheduleStyleInvalidationFo
rPseudoChange(pseudo, *this); | 1724 styleResolver->ensureUpdatedRuleFeatureSet().scheduleStyleInvalidationFo
rPseudoChange(pseudo, *this); |
1725 | 1725 |
1726 if (ElementShadow* elementShadow = shadowWhereNodeCanBeDistributed(*this)) | 1726 if (ElementShadow* elementShadow = shadowWhereNodeCanBeDistributed(*this)) |
1727 elementShadow->distributedNodePseudoStateChanged(pseudo); | 1727 elementShadow->distributedNodePseudoStateChanged(pseudo); |
1728 } | 1728 } |
1729 | 1729 |
1730 void Element::setAnimationStyleChange(bool animationStyleChange) | 1730 void Element::setAnimationStyleChange(bool animationStyleChange) const |
1731 { | 1731 { |
1732 if (animationStyleChange && document().inStyleRecalc()) | 1732 if (animationStyleChange && document().inStyleRecalc()) |
1733 return; | 1733 return; |
1734 if (ElementAnimations* elementAnimations = elementRareData()->elementAnimati
ons()) | 1734 if (ElementAnimations* elementAnimations = this->elementAnimations()) |
1735 elementAnimations->setAnimationStyleChange(animationStyleChange); | 1735 elementAnimations->setAnimationStyleChange(animationStyleChange); |
1736 } | 1736 } |
1737 | 1737 |
| 1738 void Element::clearAnimationStyleChange() const |
| 1739 { |
| 1740 if (ElementAnimations* elementAnimations = this->elementAnimations()) |
| 1741 elementAnimations->setAnimationStyleChange(false); |
| 1742 } |
| 1743 |
1738 void Element::setNeedsAnimationStyleRecalc() | 1744 void Element::setNeedsAnimationStyleRecalc() |
1739 { | 1745 { |
1740 if (styleChangeType() != NoStyleChange) | 1746 if (styleChangeType() != NoStyleChange) |
1741 return; | 1747 return; |
1742 | 1748 |
1743 setNeedsStyleRecalc(LocalStyleChange, StyleChangeReasonForTracing::create(St
yleChangeReason::Animation)); | 1749 setNeedsStyleRecalc(LocalStyleChange, StyleChangeReasonForTracing::create(St
yleChangeReason::Animation)); |
1744 setAnimationStyleChange(true); | 1750 setAnimationStyleChange(true); |
1745 } | 1751 } |
1746 | 1752 |
1747 void Element::setNeedsCompositingUpdate() | 1753 void Element::setNeedsCompositingUpdate() |
(...skipping 1624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3372 { | 3378 { |
3373 #if ENABLE(OILPAN) | 3379 #if ENABLE(OILPAN) |
3374 if (hasRareData()) | 3380 if (hasRareData()) |
3375 visitor->trace(elementRareData()); | 3381 visitor->trace(elementRareData()); |
3376 visitor->trace(m_elementData); | 3382 visitor->trace(m_elementData); |
3377 #endif | 3383 #endif |
3378 ContainerNode::trace(visitor); | 3384 ContainerNode::trace(visitor); |
3379 } | 3385 } |
3380 | 3386 |
3381 } // namespace blink | 3387 } // namespace blink |
OLD | NEW |