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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp

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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp b/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp
index e9fe5241ffe60329945577ace0e6988dacbe041a..ddb07e8b0e6a531490932f85c179399fb1b99f4b 100644
--- a/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLFieldSetElement.cpp
@@ -143,7 +143,7 @@ const FormAssociatedElement::List& HTMLFieldSetElement::associatedElements()
return m_associatedElements;
}
-short HTMLFieldSetElement::tabIndex() const {
+int HTMLFieldSetElement::tabIndex() const {
return HTMLElement::tabIndex();
}

Powered by Google App Engine
This is Rietveld 408576698