| Index: Source/core/html/HTMLDimension.cpp
|
| diff --git a/Source/core/html/HTMLDimension.cpp b/Source/core/html/HTMLDimension.cpp
|
| index 0946482e422a68d78071df173a836217f3b65bce..959b9fe2f4b30bb3e2e650a607c72c8dee64fc9d 100644
|
| --- a/Source/core/html/HTMLDimension.cpp
|
| +++ b/Source/core/html/HTMLDimension.cpp
|
| @@ -120,7 +120,7 @@ Vector<HTMLDimension> parseListOfDimensions(const String& input)
|
| size_t lastParsedIndex = 0;
|
| while (true) {
|
| size_t nextComma = trimmedString.find(comma, lastParsedIndex);
|
| - if (nextComma == notFound)
|
| + if (nextComma == kNotFound)
|
| break;
|
|
|
| parsedDimensions.append(parseDimension(trimmedString, lastParsedIndex, nextComma));
|
|
|