Changeset 267377 in webkit
- Timestamp:
- Sep 21, 2020, 3:56:34 PM (6 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
dom/Element.h (modified) (1 diff)
-
dom/Node.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r267376 r267377 1 2020-09-21 Antoine Quint <graouts@webkit.org> 2 3 Remove unused NodeFlag::HasCSSAnimation 4 https://bugs.webkit.org/show_bug.cgi?id=216785 5 6 Reviewed by Antti Koivisto. 7 8 * dom/Element.h: 9 (WebCore::Element::hasCSSAnimation const): Deleted. 10 (WebCore::Element::setHasCSSAnimation): Deleted. 11 (WebCore::Element::clearHasCSSAnimation): Deleted. 12 * dom/Node.h: 13 1 14 2020-09-21 Chris Dumez <cdumez@apple.com> 2 15 -
trunk/Source/WebCore/dom/Element.h
r267204 r267377 487 487 virtual void buildPendingResource() { }; 488 488 489 bool hasCSSAnimation() const { return hasNodeFlag(NodeFlag::HasCSSAnimation); }490 void setHasCSSAnimation() { setNodeFlag(NodeFlag::HasCSSAnimation); }491 void clearHasCSSAnimation() { clearNodeFlag(NodeFlag::HasCSSAnimation); }492 493 489 KeyframeEffectStack* keyframeEffectStack() const; 494 490 KeyframeEffectStack& ensureKeyframeEffectStack(); -
trunk/Source/WebCore/dom/Node.h
r267220 r267377 547 547 548 548 HasPendingResources = 1 << 23, 549 HasCSSAnimation = 1 << 24, 550 HasElementIdentifier = 1 << 25, 549 HasElementIdentifier = 1 << 24, 551 550 #if ENABLE(FULLSCREEN_API) 552 ContainsFullScreenElement = 1 << 2 6,551 ContainsFullScreenElement = 1 << 25, 553 552 #endif 554 IsComputedStyleInvalidFlag = 1 << 2 7,555 556 // Bits 2 8-31 are free.553 IsComputedStyleInvalidFlag = 1 << 26, 554 555 // Bits 27-31 are free. 557 556 }; 558 557
Note:
See TracChangeset
for help on using the changeset viewer.