| Index: third_party/WebKit/Source/core/html/HTMLOptionElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLOptionElement.cpp b/third_party/WebKit/Source/core/html/HTMLOptionElement.cpp
|
| index 38d3db18317f46130dcf794f295e7a132bb41ddb..3fabbd82f72ef2ed5cff89e28a4b61b85130d7fc 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLOptionElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLOptionElement.cpp
|
| @@ -88,7 +88,7 @@ HTMLOptionElement* HTMLOptionElement::createForJSConstructor(Document& document,
|
| return element;
|
| }
|
|
|
| -void HTMLOptionElement::attach(const AttachContext& context)
|
| +void HTMLOptionElement::attachLayoutTree(const AttachContext& context)
|
| {
|
| AttachContext optionContext(context);
|
| if (context.resolvedStyle) {
|
| @@ -98,7 +98,7 @@ void HTMLOptionElement::attach(const AttachContext& context)
|
| updateNonComputedStyle();
|
| optionContext.resolvedStyle = m_style.get();
|
| }
|
| - HTMLElement::attach(optionContext);
|
| + HTMLElement::attachLayoutTree(optionContext);
|
| }
|
|
|
| void HTMLOptionElement::detach(const AttachContext& context)
|
|
|