| Index: Source/core/css/SelectorCheckerFastPath.cpp
|
| diff --git a/Source/core/css/SelectorCheckerFastPath.cpp b/Source/core/css/SelectorCheckerFastPath.cpp
|
| index 8e6d350e16c865212c86a0e4e74f80fc20d29982..557f0438a56dc618b8a51d282558e5063d64c543 100644
|
| --- a/Source/core/css/SelectorCheckerFastPath.cpp
|
| +++ b/Source/core/css/SelectorCheckerFastPath.cpp
|
| @@ -75,12 +75,12 @@ inline bool fastCheckSingleSelector(const CSSSelector*& selector, const Element*
|
|
|
| inline bool checkClassValue(const Element& element, const CSSSelector* selector)
|
| {
|
| - return element.hasClass() && element.classNames().contains(selector->value().impl());
|
| + return element.hasClass() && element.classNames().contains(selector->value());
|
| }
|
|
|
| inline bool checkIDValue(const Element& element, const CSSSelector* selector)
|
| {
|
| - return element.hasID() && element.idForStyleResolution().impl() == selector->value().impl();
|
| + return element.hasID() && element.idForStyleResolution() == selector->value();
|
| }
|
|
|
| inline bool checkExactAttributeValue(const Element& element, const CSSSelector* selector)
|
|
|