| Index: Source/core/platform/Length.cpp
|
| diff --git a/Source/core/platform/Length.cpp b/Source/core/platform/Length.cpp
|
| index 26993869f6f0e789eb945c5eb04708b1b0ebe0c6..95a3733e2b2021f36943d2b049c18fe0f2b20f51 100644
|
| --- a/Source/core/platform/Length.cpp
|
| +++ b/Source/core/platform/Length.cpp
|
| @@ -99,7 +99,7 @@ Vector<Length> parseHTMLAreaElementCoords(const String& string)
|
| unsigned pos = 0;
|
| size_t pos2;
|
|
|
| - while ((pos2 = str->find(' ', pos)) != notFound) {
|
| + while ((pos2 = str->find(' ', pos)) != kNotFound) {
|
| r[i++] = parseHTMLAreaCoordinate(str->characters8() + pos, pos2 - pos);
|
| pos = pos2 + 1;
|
| }
|
|
|