| Index: Source/core/html/HTMLFieldSetElement.cpp
|
| diff --git a/Source/core/html/HTMLFieldSetElement.cpp b/Source/core/html/HTMLFieldSetElement.cpp
|
| index 90dcdd93ee02e5a02568ed56d383329e7377f530..92d8a009fc991551d73d5866ad901c9864d6ab49 100644
|
| --- a/Source/core/html/HTMLFieldSetElement.cpp
|
| +++ b/Source/core/html/HTMLFieldSetElement.cpp
|
| @@ -32,7 +32,7 @@
|
| #include "core/html/HTMLFormControlsCollection.h"
|
| #include "core/html/HTMLLegendElement.h"
|
| #include "core/html/HTMLObjectElement.h"
|
| -#include "core/rendering/RenderFieldset.h"
|
| +#include "core/layout/LayoutFieldset.h"
|
| #include "wtf/StdLibExtras.h"
|
|
|
| namespace blink {
|
| @@ -118,7 +118,7 @@ const AtomicString& HTMLFieldSetElement::formControlType() const
|
|
|
| LayoutObject* HTMLFieldSetElement::createRenderer(const LayoutStyle&)
|
| {
|
| - return new RenderFieldset(this);
|
| + return new LayoutFieldset(this);
|
| }
|
|
|
| HTMLLegendElement* HTMLFieldSetElement::legend() const
|
|
|