Chromium Code Reviews| 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 45bc7517a5dd5020d733f34672f8317665d4c9d8..bf040a4a5ecf258cf56180905f6b22358f429f4a 100644 |
| --- a/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp |
| +++ b/third_party/WebKit/Source/core/css/CSSComputedStyleDeclaration.cpp |
| @@ -512,7 +512,7 @@ const ComputedStyle* CSSComputedStyleDeclaration::computeComputedStyle() const |
| { |
| Node* styledNode = this->styledNode(); |
| ASSERT(styledNode); |
| - return styledNode->ensureComputedStyle(styledNode->isPseudoElement() ? NOPSEUDO : m_pseudoElementSpecifier); |
| + return styledNode->ensureComputedStyle(styledNode->isPseudoElement() ? PseudoIdNoPseudo : m_pseudoElementSpecifier); |
|
esprehn
2016/03/08 02:18:48
PseudoIdNone
danakj
2016/03/08 18:30:16
Done.
|
| } |
| Node* CSSComputedStyleDeclaration::styledNode() const |