| Index: Source/core/svg/SVGStyledElement.cpp | 
| diff --git a/Source/core/svg/SVGStyledElement.cpp b/Source/core/svg/SVGStyledElement.cpp | 
| index 5f57599a31e00f40010119333558e346e2234a9b..03a7bdf1c060710fc8393bed6b5fa84705d2a70f 100644 | 
| --- a/Source/core/svg/SVGStyledElement.cpp | 
| +++ b/Source/core/svg/SVGStyledElement.cpp | 
| @@ -469,17 +469,4 @@ void SVGStyledElement::updateRelativeLengthsInformation(bool hasRelativeLengths, | 
| } | 
| } | 
|  | 
| -bool SVGStyledElement::isMouseFocusable() const | 
| -{ | 
| -    if (!isFocusable()) | 
| -        return false; | 
| -    Element* eventTarget = const_cast<SVGStyledElement *>(this); | 
| -    return eventTarget->hasEventListeners(eventNames().focusinEvent) || eventTarget->hasEventListeners(eventNames().focusoutEvent); | 
| -} | 
| - | 
| -bool SVGStyledElement::isKeyboardFocusable(KeyboardEvent*) const | 
| -{ | 
| -    return isMouseFocusable(); | 
| -} | 
| - | 
| } | 
|  |