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

Unified Diff: third_party/WebKit/Source/core/svg/SVGAElement.cpp

Issue 2362223002: Stop clamping tabIndex to short range (Closed)
Patch Set: Fix test expectation Created 4 years, 2 months 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/svg/SVGAElement.cpp
diff --git a/third_party/WebKit/Source/core/svg/SVGAElement.cpp b/third_party/WebKit/Source/core/svg/SVGAElement.cpp
index af5420e1400d29fa050366cf762afa7bb777386d..f41f498329cfda47ec3d05bdd4eab7738217d8f5 100644
--- a/third_party/WebKit/Source/core/svg/SVGAElement.cpp
+++ b/third_party/WebKit/Source/core/svg/SVGAElement.cpp
@@ -148,7 +148,7 @@ void SVGAElement::defaultEventHandler(Event* event) {
SVGGraphicsElement::defaultEventHandler(event);
}
-short SVGAElement::tabIndex() const {
+int SVGAElement::tabIndex() const {
// Skip the supportsFocus check in SVGElement.
return Element::tabIndex();
}

Powered by Google App Engine
This is Rietveld 408576698