| Index: Source/core/html/parser/HTMLPreloadScanner.cpp
|
| diff --git a/Source/core/html/parser/HTMLPreloadScanner.cpp b/Source/core/html/parser/HTMLPreloadScanner.cpp
|
| index 77ecd0d6d35b142a3967632f03049fa45d620dbc..895d6a0d96d304c5990f0b09841b87b372392d43 100644
|
| --- a/Source/core/html/parser/HTMLPreloadScanner.cpp
|
| +++ b/Source/core/html/parser/HTMLPreloadScanner.cpp
|
| @@ -29,9 +29,9 @@
|
| #include "core/html/parser/HTMLPreloadScanner.h"
|
|
|
| #include "HTMLNames.h"
|
| +#include "InputTypeNames.h"
|
| #include "RuntimeEnabledFeatures.h"
|
| #include "core/html/LinkRelAttribute.h"
|
| -#include "core/html/forms/InputTypeNames.h"
|
| #include "core/html/parser/HTMLParserIdioms.h"
|
| #include "core/html/parser/HTMLSrcsetParser.h"
|
| #include "core/html/parser/HTMLTokenizer.h"
|
| @@ -179,7 +179,7 @@ private:
|
| if (match(attributeName, srcAttr))
|
| setUrlToLoad(attributeValue, DisallowURLReplacement);
|
| else if (match(attributeName, typeAttr))
|
| - m_inputIsImage = equalIgnoringCase(attributeValue, "image");
|
| + m_inputIsImage = equalIgnoringCase(attributeValue, InputTypeNames::image);
|
| }
|
| }
|
|
|
|
|