| Index: third_party/WebKit/Source/modules/accessibility/AXImageMapLink.cpp
|
| diff --git a/third_party/WebKit/Source/modules/accessibility/AXImageMapLink.cpp b/third_party/WebKit/Source/modules/accessibility/AXImageMapLink.cpp
|
| index f222e23ff8b7892781ed1cc360d6536a6cb97599..7c5a49940c3a1ae936be3f622d0494560d19b9e6 100644
|
| --- a/third_party/WebKit/Source/modules/accessibility/AXImageMapLink.cpp
|
| +++ b/third_party/WebKit/Source/modules/accessibility/AXImageMapLink.cpp
|
| @@ -102,30 +102,6 @@ KURL AXImageMapLink::url() const
|
| return areaElement()->href();
|
| }
|
|
|
| -String AXImageMapLink::deprecatedAccessibilityDescription() const
|
| -{
|
| - const AtomicString& ariaLabel = getAttribute(aria_labelAttr);
|
| - if (!ariaLabel.isEmpty())
|
| - return ariaLabel;
|
| - const AtomicString& alt = getAttribute(altAttr);
|
| - if (!alt.isEmpty())
|
| - return alt;
|
| -
|
| - return String();
|
| -}
|
| -
|
| -String AXImageMapLink::deprecatedTitle(TextUnderElementMode mode) const
|
| -{
|
| - const AtomicString& title = getAttribute(titleAttr);
|
| - if (!title.isEmpty())
|
| - return title;
|
| - const AtomicString& summary = getAttribute(summaryAttr);
|
| - if (!summary.isEmpty())
|
| - return summary;
|
| -
|
| - return String();
|
| -}
|
| -
|
| LayoutRect AXImageMapLink::elementRect() const
|
| {
|
| HTMLAreaElement* area = areaElement();
|
|
|