| Index: third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| index 2049367d76af354817202b78d02a37dc94f97772..6d758b65e56bea9df464f28bc390db4a8f8b104b 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| @@ -3056,14 +3056,14 @@ PassRefPtr<ComputedStyle> LayoutObject::getUncachedPseudoStyle(
|
|
|
| if (pseudoStyleRequest.pseudoId == PseudoIdFirstLineInherited) {
|
| RefPtr<ComputedStyle> result =
|
| - document().ensureStyleResolver().styleForElement(element, parentStyle,
|
| - DisallowStyleSharing);
|
| + document().ensureStyleResolver().styleForElement(
|
| + element, parentStyle, parentStyle, DisallowStyleSharing);
|
| result->setStyleType(PseudoIdFirstLineInherited);
|
| return result.release();
|
| }
|
|
|
| return document().ensureStyleResolver().pseudoStyleForElement(
|
| - element, pseudoStyleRequest, parentStyle);
|
| + element, pseudoStyleRequest, parentStyle, parentStyle);
|
| }
|
|
|
| PassRefPtr<ComputedStyle>
|
|
|