| Index: Source/core/html/HTMLInputElement.cpp
|
| diff --git a/Source/core/html/HTMLInputElement.cpp b/Source/core/html/HTMLInputElement.cpp
|
| index 44de7678423b8309209cf6ebbf5088d395fac47c..de0e61d15e042596380e79e0f5814fb3868200c9 100644
|
| --- a/Source/core/html/HTMLInputElement.cpp
|
| +++ b/Source/core/html/HTMLInputElement.cpp
|
| @@ -1242,7 +1242,7 @@ static inline bool isRFC2616TokenCharacter(UChar ch)
|
| static bool isValidMIMEType(const String& type)
|
| {
|
| size_t slashPosition = type.find('/');
|
| - if (slashPosition == notFound || !slashPosition || slashPosition == type.length() - 1)
|
| + if (slashPosition == kNotFound || !slashPosition || slashPosition == type.length() - 1)
|
| return false;
|
| for (size_t i = 0; i < type.length(); ++i) {
|
| if (!isRFC2616TokenCharacter(type[i]) && i != slashPosition)
|
|
|