| Index: Source/core/html/HTMLFrameSetElement.cpp | 
| diff --git a/Source/core/html/HTMLFrameSetElement.cpp b/Source/core/html/HTMLFrameSetElement.cpp | 
| index 1a348a3a49a8d6608b55c5ebbe4eb8721872fc80..6c8c9a14d1077459bd6c61726bcf66b13470e844 100644 | 
| --- a/Source/core/html/HTMLFrameSetElement.cpp | 
| +++ b/Source/core/html/HTMLFrameSetElement.cpp | 
| @@ -161,7 +161,7 @@ RenderObject* HTMLFrameSetElement::createRenderer(RenderStyle *style) | 
| return new RenderFrameSet(this); | 
| } | 
|  | 
| -void HTMLFrameSetElement::attach(const AttachContext& context) | 
| +void HTMLFrameSetElement::createRenderTree(const AttachContext& context) | 
| { | 
| // Inherit default settings from parent frameset | 
| // FIXME: This is not dynamic. | 
| @@ -182,7 +182,7 @@ void HTMLFrameSetElement::attach(const AttachContext& context) | 
| } | 
| } | 
|  | 
| -    HTMLElement::attach(context); | 
| +    HTMLElement::createRenderTree(context); | 
| } | 
|  | 
| void HTMLFrameSetElement::defaultEventHandler(Event* evt) | 
|  |