| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 void dispatchFocusEvent(Element* oldFocusedElement, | 57 void dispatchFocusEvent(Element* oldFocusedElement, |
| 58 WebFocusType, | 58 WebFocusType, |
| 59 InputDeviceCapabilities* sourceCapabilities) override; | 59 InputDeviceCapabilities* sourceCapabilities) override; |
| 60 void dispatchBlurEvent(Element* newFocusedElement, | 60 void dispatchBlurEvent(Element* newFocusedElement, |
| 61 WebFocusType, | 61 WebFocusType, |
| 62 InputDeviceCapabilities* sourceCapabilities) override; | 62 InputDeviceCapabilities* sourceCapabilities) override; |
| 63 bool isMouseFocusable() const override; | 63 bool isMouseFocusable() const override; |
| 64 bool isKeyboardFocusable() const override; | 64 bool isKeyboardFocusable() const override; |
| 65 bool isURLAttribute(const Attribute&) const override; | 65 bool isURLAttribute(const Attribute&) const override; |
| 66 bool canStartSelection() const override; | 66 bool canStartSelection() const override; |
| 67 short tabIndex() const override; | 67 int tabIndex() const override; |
| 68 | 68 |
| 69 bool willRespondToMouseClickEvents() override; | 69 bool willRespondToMouseClickEvents() override; |
| 70 | 70 |
| 71 Member<SVGAnimatedString> m_svgTarget; | 71 Member<SVGAnimatedString> m_svgTarget; |
| 72 bool m_wasFocusedByMouse; | 72 bool m_wasFocusedByMouse; |
| 73 }; | 73 }; |
| 74 | 74 |
| 75 } // namespace blink | 75 } // namespace blink |
| 76 | 76 |
| 77 #endif // SVGAElement_h | 77 #endif // SVGAElement_h |
| OLD | NEW |