Index: third_party/WebKit/Source/core/html/parser/HTMLElementStack.cpp |
diff --git a/third_party/WebKit/Source/core/html/parser/HTMLElementStack.cpp b/third_party/WebKit/Source/core/html/parser/HTMLElementStack.cpp |
index 2c1bf45de08309fa27422ea821bf783d50c30931..22a787250acefd25609c51af90ef8516ee5faf11 100644 |
--- a/third_party/WebKit/Source/core/html/parser/HTMLElementStack.cpp |
+++ b/third_party/WebKit/Source/core/html/parser/HTMLElementStack.cpp |
@@ -245,8 +245,8 @@ bool HTMLElementStack::IsHTMLIntegrationPoint(HTMLStackItem* item) { |
item->GetAttributeItem(MathMLNames::encodingAttr); |
if (encoding_attr) { |
const String& encoding = encoding_attr->Value(); |
- return EqualIgnoringCase(encoding, "text/html") || |
- EqualIgnoringCase(encoding, "application/xhtml+xml"); |
+ return DeprecatedEqualIgnoringCase(encoding, "text/html") || |
+ DeprecatedEqualIgnoringCase(encoding, "application/xhtml+xml"); |
} |
return false; |
} |