Changeset 190995 in webkit
- Timestamp:
- Oct 13, 2015, 11:34:22 AM (10 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r190993 r190995 1 2015-10-13 Antti Koivisto <antti@apple.com> 2 3 Try to fix ENABLE(DETAILS_ELEMENT) with SHADOW_DOM disabled. 4 5 * dom/Element.cpp: 6 (WebCore::Element::attributeChanged): 7 * dom/Node.cpp: 8 (WebCore::traverseStyleParent): 9 1 10 2015-10-13 Youenn Fablet <youenn.fablet@crf.canon.fr> 2 11 -
trunk/Source/WebCore/dom/Element.cpp
r190845 r190995 1236 1236 else if (name == HTMLNames::pseudoAttr) 1237 1237 shouldInvalidateStyle |= testShouldInvalidateStyle && isInShadowTree(); 1238 #if ENABLE(SHADOW_DOM) 1238 #if ENABLE(SHADOW_DOM) || ENABLE(DETAILS_ELEMENT) 1239 1239 else if (name == HTMLNames::slotAttr) { 1240 1240 if (auto* parent = parentElement()) { -
trunk/Source/WebCore/dom/Node.cpp
r190845 r190995 750 750 return nullptr; 751 751 } 752 #if ENABLE(SHADOW_DOM) 752 #if ENABLE(SHADOW_DOM) || ENABLE(DETAILS_ELEMENT) 753 753 if (auto* shadowRoot = parent->shadowRoot()) { 754 754 if (auto* assignedSlot = shadowRoot->findAssignedSlot(node))
Note:
See TracChangeset
for help on using the changeset viewer.