| Index: third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp b/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
|
| index 6be792f3adad27dde1371b8def2c19f719cfe199..e6e061fd43441c0744f6756e3e144a599401666e 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
|
| @@ -43,7 +43,6 @@
|
| inline HTMLSlotElement::HTMLSlotElement(Document& document)
|
| : HTMLElement(slotTag, document)
|
| {
|
| - setHasCustomStyleCallbacks();
|
| }
|
|
|
| DEFINE_NODE_FACTORY(HTMLSlotElement);
|
| @@ -202,15 +201,6 @@
|
| HTMLElement::removedFrom(insertionPoint);
|
| }
|
|
|
| -void HTMLSlotElement::willRecalcStyle(StyleRecalcChange change)
|
| -{
|
| - if (change < Inherit && styleChangeType() < SubtreeStyleChange)
|
| - return;
|
| -
|
| - for (Node* node : m_distributedNodes)
|
| - node->setNeedsStyleRecalc(LocalStyleChange, StyleChangeReasonForTracing::create(StyleChangeReason::PropagateInheritChangeToDistributedNodes));
|
| -}
|
| -
|
| void HTMLSlotElement::updateDistributedNodesWithFallback()
|
| {
|
| if (!m_distributedNodes.isEmpty())
|
|
|