diff options
Diffstat (limited to 'WebCore/html/HTMLLegendElement.cpp')
-rw-r--r-- | WebCore/html/HTMLLegendElement.cpp | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/WebCore/html/HTMLLegendElement.cpp b/WebCore/html/HTMLLegendElement.cpp index 9f7e645..4092643 100644 --- a/WebCore/html/HTMLLegendElement.cpp +++ b/WebCore/html/HTMLLegendElement.cpp @@ -26,7 +26,6 @@ #include "HTMLLegendElement.h" #include "HTMLNames.h" -#include "RenderLegend.h" #include <wtf/StdLibExtras.h> namespace WebCore { @@ -48,14 +47,6 @@ bool HTMLLegendElement::isFocusable() const return HTMLElement::isFocusable(); } -RenderObject* HTMLLegendElement::createRenderer(RenderArena* arena, RenderStyle* style) -{ - if (style->contentData()) - return RenderObject::createObject(this, style); - - return new (arena) RenderLegend(this); -} - const AtomicString& HTMLLegendElement::type() const { DEFINE_STATIC_LOCAL(const AtomicString, legend, ("legend")); |