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

Unified Diff: third_party/WebKit/Source/core/html/HTMLSlotElement.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/html/HTMLSlotElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp b/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
index 2d4113e136e7c9ab5a5cdfb8ad5d75d4a3e4d083..39898013ef7e88f95b7f04f856d8b3aca28e7660 100644
--- a/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
@@ -340,7 +340,7 @@ bool HTMLSlotElement::findHostChildWithSameSlotName() const {
return assignment.findHostChildBySlotName(name());
}
-short HTMLSlotElement::tabIndex() const {
+int HTMLSlotElement::tabIndex() const {
return Element::tabIndex();
}

Powered by Google App Engine
This is Rietveld 408576698