summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/html/HTMLSummaryElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/html/HTMLSummaryElement.cpp')
-rw-r--r--Source/WebCore/html/HTMLSummaryElement.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/Source/WebCore/html/HTMLSummaryElement.cpp b/Source/WebCore/html/HTMLSummaryElement.cpp
index 96e3d74..9c2222a 100644
--- a/Source/WebCore/html/HTMLSummaryElement.cpp
+++ b/Source/WebCore/html/HTMLSummaryElement.cpp
@@ -21,7 +21,9 @@
#include "config.h"
#include "HTMLSummaryElement.h"
+#include "HTMLDetailsElement.h"
#include "HTMLNames.h"
+#include "RenderSummary.h"
namespace WebCore {
@@ -38,4 +40,9 @@ HTMLSummaryElement::HTMLSummaryElement(const QualifiedName& tagName, Document* d
ASSERT(hasTagName(summaryTag));
}
+RenderObject* HTMLSummaryElement::createRenderer(RenderArena* arena, RenderStyle*)
+{
+ return new (arena) RenderSummary(this);
+}
+
}