| Index: third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp b/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
|
| index 6dd0b9a1b6693fa3a30f0de0e6f702e785d959c3..152f200ab60893c3cb628c09d5d83fd30b38c707 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLFrameSetElement.cpp
|
| @@ -163,7 +163,7 @@ LayoutObject* HTMLFrameSetElement::createLayoutObject(const ComputedStyle& style
|
| return new LayoutFrameSet(this);
|
| }
|
|
|
| -void HTMLFrameSetElement::attach(const AttachContext& context)
|
| +void HTMLFrameSetElement::attachLayoutTree(const AttachContext& context)
|
| {
|
| // Inherit default settings from parent frameset
|
| // FIXME: This is not dynamic.
|
| @@ -180,7 +180,7 @@ void HTMLFrameSetElement::attach(const AttachContext& context)
|
| m_noresize = frameset->noResize();
|
| }
|
|
|
| - HTMLElement::attach(context);
|
| + HTMLElement::attachLayoutTree(context);
|
| }
|
|
|
| void HTMLFrameSetElement::defaultEventHandler(Event* evt)
|
|
|