| Index: third_party/WebKit/Source/core/html/forms/TextFieldInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/TextFieldInputType.cpp b/third_party/WebKit/Source/core/html/forms/TextFieldInputType.cpp
|
| index 2892b220dba91f3b8ec6492027ba7e6eabbedfc3..083729d52000afaaf27fbbb6e4cfed330c50d442 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/TextFieldInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/TextFieldInputType.cpp
|
| @@ -125,8 +125,9 @@ InputType::ValueMode TextFieldInputType::valueMode() const {
|
| }
|
|
|
| SpinButtonElement* TextFieldInputType::spinButtonElement() const {
|
| - return toSpinButtonElement(element().userAgentShadowRoot()->getElementById(
|
| - ShadowElementNames::spinButton()));
|
| + return toSpinButtonElementOrDie(
|
| + element().userAgentShadowRoot()->getElementById(
|
| + ShadowElementNames::spinButton()));
|
| }
|
|
|
| bool TextFieldInputType::shouldShowFocusRingOnMouseFocus() const {
|
|
|