| Index: third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| index 1489935dda61b3d49b85ce06356f2bc97132f7ee..106875e1c3dffc586d019426a6302c93b477dfd1 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -499,7 +499,8 @@ const ComputedStyle* CSSComputedStyleDeclaration::computeComputedStyle() const
|
| {
|
| Node* styledNode = this->styledNode();
|
| ASSERT(styledNode);
|
| - return styledNode->ensureComputedStyle(styledNode->isPseudoElement() ? PseudoIdNone : m_pseudoElementSpecifier);
|
| + // TODO(rjwright): Put this change in its own CL.
|
| + return styledNode->ensureComputedStyle(styledNode->getPseudoId());
|
| }
|
|
|
| Node* CSSComputedStyleDeclaration::styledNode() const
|
|
|