| Index: third_party/WebKit/Source/core/dom/Element.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/Element.cpp b/third_party/WebKit/Source/core/dom/Element.cpp
|
| index 3bef135738b4aeeeb1dbf0b521da5c59815a5f7c..08464475358402cd9e354cb7cb0eba9038279b15 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Element.cpp
|
| @@ -1905,6 +1905,8 @@ PassRefPtr<ComputedStyle> Element::propagateInheritedProperties(
|
| StyleRecalcChange change) {
|
| if (change != IndependentInherit)
|
| return nullptr;
|
| + if (isPseudoElement())
|
| + return nullptr;
|
| if (needsStyleRecalc())
|
| return nullptr;
|
| if (hasAnimations())
|
|
|