| Index: third_party/WebKit/Source/core/html/parser/HTMLParserIdioms.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/parser/HTMLParserIdioms.cpp b/third_party/WebKit/Source/core/html/parser/HTMLParserIdioms.cpp
|
| index eb9ed56d66fb8d847efe21cc338cf64a34414398..8c770040281fd03fd9157fd82cf99219beee8e8d 100644
|
| --- a/third_party/WebKit/Source/core/html/parser/HTMLParserIdioms.cpp
|
| +++ b/third_party/WebKit/Source/core/html/parser/HTMLParserIdioms.cpp
|
| @@ -418,7 +418,7 @@ WTF::TextEncoding EncodingFromMetaAttributes(
|
| const String& attribute_value = AtomicString(html_attribute.second);
|
|
|
| if (ThreadSafeMatch(attribute_name, http_equivAttr)) {
|
| - if (EqualIgnoringCase(attribute_value, "content-type"))
|
| + if (DeprecatedEqualIgnoringCase(attribute_value, "content-type"))
|
| got_pragma = true;
|
| } else if (charset.IsEmpty()) {
|
| if (ThreadSafeMatch(attribute_name, charsetAttr)) {
|
|
|