| Index: Source/core/html/forms/TextFieldInputType.cpp
|
| diff --git a/Source/core/html/forms/TextFieldInputType.cpp b/Source/core/html/forms/TextFieldInputType.cpp
|
| index c9ab70009c310e45237a1afe4967124a1eb33041..9c1aad306f56669d58715f7e6952dd09a159cab9 100644
|
| --- a/Source/core/html/forms/TextFieldInputType.cpp
|
| +++ b/Source/core/html/forms/TextFieldInputType.cpp
|
| @@ -64,7 +64,7 @@ private:
|
| inline DataListIndicatorElement(Document& document) : HTMLDivElement(document) { }
|
| inline HTMLInputElement* hostInput() const { return toHTMLInputElement(shadowHost()); }
|
|
|
| - virtual RenderObject* createRenderer(RenderStyle*) override
|
| + virtual LayoutObject* createRenderer(RenderStyle*) override
|
| {
|
| return new RenderDetailsMarker(this);
|
| }
|
| @@ -267,7 +267,7 @@ bool TextFieldInputType::shouldSubmitImplicitly(Event* event)
|
| return (event->type() == EventTypeNames::textInput && event->hasInterface(EventNames::TextEvent) && toTextEvent(event)->data() == "\n") || InputType::shouldSubmitImplicitly(event);
|
| }
|
|
|
| -RenderObject* TextFieldInputType::createRenderer(RenderStyle*) const
|
| +LayoutObject* TextFieldInputType::createRenderer(RenderStyle*) const
|
| {
|
| return new RenderTextControlSingleLine(&element());
|
| }
|
|
|