Changeset 200642 in webkit
- Timestamp:
- May 10, 2016, 1:45:28 PM (9 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r200640 r200642 1 2016-05-10 Csaba Osztrogonác <ossy@webkit.org> 2 3 Fix the !ENABLE(SHADOW_DOM) && !ENABLE(DETAILS_ELEMENT) build 4 https://bugs.webkit.org/show_bug.cgi?id=157514 5 6 Reviewed by Ryosuke Niwa. 7 8 * dom/Element.cpp: 9 (WebCore::Element::insertedInto): 10 (WebCore::Element::removedFrom): 11 1 12 2016-05-10 Csaba Osztrogonác <ossy@webkit.org> 2 13 -
trunk/Source/WebCore/dom/Element.cpp
r200626 r200642 1512 1512 #endif 1513 1513 1514 #if ENABLE(SHADOW_DOM) || ENABLE(DETAILS_ELEMENT) 1514 1515 if (parentNode() == &insertionPoint) { 1515 1516 if (auto* shadowRoot = parentNode()->shadowRoot()) 1516 1517 shadowRoot->hostChildElementDidChange(*this); 1517 1518 } 1519 #endif 1518 1520 1519 1521 if (!insertionPoint.isInTreeScope()) … … 1596 1598 } 1597 1599 1600 #if ENABLE(SHADOW_DOM) || ENABLE(DETAILS_ELEMENT) 1598 1601 if (!parentNode()) { 1599 1602 if (auto* shadowRoot = insertionPoint.shadowRoot()) 1600 1603 shadowRoot->hostChildElementDidChange(*this); 1601 1604 } 1605 #endif 1602 1606 1603 1607 ContainerNode::removedFrom(insertionPoint);
Note:
See TracChangeset
for help on using the changeset viewer.