Index: Source/core/html/HTMLBRElement.cpp |
diff --git a/Source/core/html/HTMLBRElement.cpp b/Source/core/html/HTMLBRElement.cpp |
index 7b4bb5eae50caa05bd6065c2d1e4557a4c3aa164..d3aaed8795d0e428a55b38266a971d242fc8eabf 100644 |
--- a/Source/core/html/HTMLBRElement.cpp |
+++ b/Source/core/html/HTMLBRElement.cpp |
@@ -61,11 +61,10 @@ void HTMLBRElement::collectStyleForPresentationAttribute(const QualifiedName& na |
HTMLElement::collectStyleForPresentationAttribute(name, value, style); |
} |
-RenderObject* HTMLBRElement::createRenderer(const RenderStyle& style) |
+LayoutObject* HTMLBRElement::createRenderer(const RenderStyle& style) |
{ |
if (style.hasContent()) |
- return RenderObject::createObject(this, style); |
- |
+ return LayoutObject::createObject(this, style); |
return new RenderBR(this); |
} |