| Index: Source/core/svg/SVGAElement.cpp
|
| diff --git a/Source/core/svg/SVGAElement.cpp b/Source/core/svg/SVGAElement.cpp
|
| index 85b69b0b1327963b0ea37f793a4996a3a19ba665..952b8c76ad502e5ff98ead61cd49e0274f083ee9 100644
|
| --- a/Source/core/svg/SVGAElement.cpp
|
| +++ b/Source/core/svg/SVGAElement.cpp
|
| @@ -174,10 +174,10 @@ bool SVGAElement::shouldHaveFocusAppearance() const
|
| return !m_wasFocusedByMouse || SVGGraphicsElement::supportsFocus();
|
| }
|
|
|
| -void SVGAElement::dispatchFocusEvent(Element* oldFocusedElement, FocusType type)
|
| +void SVGAElement::dispatchFocusEvent(Element* oldFocusedElement, WebFocusType type)
|
| {
|
| - if (type != FocusTypePage)
|
| - m_wasFocusedByMouse = type == FocusTypeMouse;
|
| + if (type != WebFocusTypePage)
|
| + m_wasFocusedByMouse = type == WebFocusTypeMouse;
|
| SVGGraphicsElement::dispatchFocusEvent(oldFocusedElement, type);
|
| }
|
|
|
|
|