| Index: third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
|
| index aa070a2b932ecc77f04f13fa607e052a84b5b772..1abf5d042d02e3e6f349fd464feb9a04f11db773 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLAnchorElement.cpp
|
| @@ -240,9 +240,9 @@ bool HTMLAnchorElement::CanStartSelection() const {
|
| bool HTMLAnchorElement::draggable() const {
|
| // Should be draggable if we have an href attribute.
|
| const AtomicString& value = getAttribute(draggableAttr);
|
| - if (EqualIgnoringCase(value, "true"))
|
| + if (DeprecatedEqualIgnoringCase(value, "true"))
|
| return true;
|
| - if (EqualIgnoringCase(value, "false"))
|
| + if (DeprecatedEqualIgnoringCase(value, "false"))
|
| return false;
|
| return hasAttribute(hrefAttr);
|
| }
|
|
|