| 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 4505973a65b97337d034af5288a6f719cb03397d..8edd1e9f1f7219b752cd95a05cfa9bbc0d191321 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/Element.cpp
|
| @@ -2830,9 +2830,9 @@ const ComputedStyle* Element::ensureComputedStyle(PseudoId pseudoElementSpecifie
|
| ComputedStyle* elementStyle = mutableComputedStyle();
|
| if (!elementStyle) {
|
| ElementRareData& rareData = ensureElementRareData();
|
| - if (!rareData.ensureComputedStyle())
|
| + if (!rareData.computedStyle())
|
| rareData.setComputedStyle(document().styleForElementIgnoringPendingStylesheets(this));
|
| - elementStyle = rareData.ensureComputedStyle();
|
| + elementStyle = rareData.computedStyle();
|
| }
|
|
|
| if (!pseudoElementSpecifier)
|
|
|