Index: third_party/WebKit/Source/core/dom/StyleElement.cpp |
diff --git a/third_party/WebKit/Source/core/dom/StyleElement.cpp b/third_party/WebKit/Source/core/dom/StyleElement.cpp |
index a12a197a42870420f7e94dfa931a62c5f0578f6d..5f8bd0887f84168aa65113f184a3ecb020a2c1da 100644 |
--- a/third_party/WebKit/Source/core/dom/StyleElement.cpp |
+++ b/third_party/WebKit/Source/core/dom/StyleElement.cpp |
@@ -39,9 +39,9 @@ |
namespace blink { |
static bool IsCSS(const Element& element, const AtomicString& type) { |
- return type.IsEmpty() || |
- (element.IsHTMLElement() ? EqualIgnoringCase(type, "text/css") |
- : (type == "text/css")); |
+ return type.IsEmpty() || (element.IsHTMLElement() |
+ ? DeprecatedEqualIgnoringCase(type, "text/css") |
+ : (type == "text/css")); |
} |
StyleElement::StyleElement(Document* document, bool created_by_parser) |