Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(628)

Side by Side Diff: third_party/WebKit/Source/core/svg/SVGAElement.h

Issue 2362223002: Stop clamping tabIndex to short range (Closed)
Patch Set: Fix tabindex-clamp.html Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/page/FocusController.cpp ('k') | third_party/WebKit/Source/core/svg/SVGAElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698