| Index: Source/core/css/SelectorChecker.cpp
|
| diff --git a/Source/core/css/SelectorChecker.cpp b/Source/core/css/SelectorChecker.cpp
|
| index 6837ffd40fc238ac08ccf3cf233893257dd76013..35f90fdec584a5af79749f292d067d228ddfa591 100644
|
| --- a/Source/core/css/SelectorChecker.cpp
|
| +++ b/Source/core/css/SelectorChecker.cpp
|
| @@ -322,7 +322,7 @@ static bool attributeValueMatches(const Attribute* attributeItem, CSSSelector::M
|
| unsigned startSearchAt = 0;
|
| while (true) {
|
| size_t foundPos = value.find(selectorValue, startSearchAt, caseSensitive);
|
| - if (foundPos == notFound)
|
| + if (foundPos == kNotFound)
|
| return false;
|
| if (!foundPos || isHTMLSpace(value[foundPos - 1])) {
|
| unsigned endStr = foundPos + selectorValue.length();
|
|
|