| Index: Source/core/css/CSSParser-in.cpp
|
| diff --git a/Source/core/css/CSSParser-in.cpp b/Source/core/css/CSSParser-in.cpp
|
| index 889de86511905b84998ae21d89561ee6f3b05628..c513637e7f34b84f6e00765179146f4237f89316 100644
|
| --- a/Source/core/css/CSSParser-in.cpp
|
| +++ b/Source/core/css/CSSParser-in.cpp
|
| @@ -1087,7 +1087,7 @@ static bool parseTransformArguments(CSSTransformValue* transformValue, Character
|
| {
|
| while (expectedCount) {
|
| size_t end = WTF::find(characters, length, expectedCount == 1 ? ')' : ',', start);
|
| - if (end == notFound || (expectedCount == 1 && end != length - 1))
|
| + if (end == kNotFound || (expectedCount == 1 && end != length - 1))
|
| return false;
|
| unsigned argumentLength = end - start;
|
| CSSPrimitiveValue::UnitTypes unit = CSSPrimitiveValue::CSS_NUMBER;
|
|
|