| Index: third_party/WebKit/Source/core/html/HTMLParamElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLParamElement.cpp b/third_party/WebKit/Source/core/html/HTMLParamElement.cpp
|
| index a168088c70aa0b22e38c377b01b0c7c28cf60611..e2c97711c0e5382b3190b9ba9caebe2813cd3dc5 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLParamElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLParamElement.cpp
|
| @@ -46,8 +46,9 @@ const AtomicString& HTMLParamElement::Value() const {
|
| }
|
|
|
| bool HTMLParamElement::IsURLParameter(const String& name) {
|
| - return EqualIgnoringCase(name, "data") || EqualIgnoringCase(name, "movie") ||
|
| - EqualIgnoringCase(name, "src");
|
| + return DeprecatedEqualIgnoringCase(name, "data") ||
|
| + DeprecatedEqualIgnoringCase(name, "movie") ||
|
| + DeprecatedEqualIgnoringCase(name, "src");
|
| }
|
|
|
| bool HTMLParamElement::IsURLAttribute(const Attribute& attribute) const {
|
|
|