| Index: third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| index 0cbf1ffad8ab7f1fe787559e7668b98a26c2f523..d38d0c2a763475ebbea66556f82a9e73a3af213b 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorCSSAgent.cpp
|
| @@ -1755,7 +1755,7 @@ static inline bool matchesPseudoElement(const CSSSelector* selector, PseudoId el
|
| // According to http://www.w3.org/TR/css3-selectors/#pseudo-elements, "Only one pseudo-element may appear per selector."
|
| // As such, check the last selector in the tag history.
|
| for (; !selector->isLastInTagHistory(); ++selector) { }
|
| - PseudoId selectorPseudoId = CSSSelector::pseudoId(selector->pseudoType());
|
| + PseudoId selectorPseudoId = CSSSelector::pseudoId(selector->getPseudoType());
|
|
|
| // FIXME: This only covers the case of matching pseudo-element selectors against PseudoElements.
|
| // We should come up with a solution for matching pseudo-element selectors against ordinary Elements, too.
|
|
|