| Index: third_party/WebKit/Source/core/dom/Element.h
|
| diff --git a/third_party/WebKit/Source/core/dom/Element.h b/third_party/WebKit/Source/core/dom/Element.h
|
| index 208585d7af83e48a1ed63bc2b1436893cec7586d..b65d184a51b258b1111b74bc52e56e94b1f901d5 100644
|
| --- a/third_party/WebKit/Source/core/dom/Element.h
|
| +++ b/third_party/WebKit/Source/core/dom/Element.h
|
| @@ -677,7 +677,7 @@ class CORE_EXPORT Element : public ContainerNode {
|
| void clearMutableInlineStyleIfEmpty();
|
|
|
| void setTabIndex(int);
|
| - short tabIndex() const override;
|
| + int tabIndex() const override;
|
|
|
| // A compositor proxy is a very limited wrapper around an element. It
|
| // exposes only those properties that are requested at the time the proxy is
|
| @@ -757,7 +757,7 @@ class CORE_EXPORT Element : public ContainerNode {
|
| bool supportsSpatialNavigationFocus() const;
|
|
|
| void clearTabIndexExplicitlyIfNeeded();
|
| - void setTabIndexExplicitly(short);
|
| + void setTabIndexExplicitly(int);
|
| // Subclasses may override this method to affect focusability. This method
|
| // must be called on an up-to-date ComputedStyle, so it may use existence of
|
| // layoutObject and the LayoutObject::style() to reason about focusability.
|
|
|