blob: 11e0407b278da3cca439383e6d33b34806172c64 [file] [log] [blame]
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "config.h"
#include "core/html/HTMLRubyElement.h"
#include "core/HTMLNames.h"
#include "core/rendering/RenderRuby.h"
namespace blink {
using namespace HTMLNames;
inline HTMLRubyElement::HTMLRubyElement(Document& document)
: HTMLElement(rubyTag, document)
{
}
DEFINE_NODE_FACTORY(HTMLRubyElement)
RenderObject* HTMLRubyElement::createRenderer(RenderStyle* style)
{
if (style->display() == INLINE)
return new RenderRubyAsInline(this);
if (style->display() == BLOCK)
return new RenderRubyAsBlock(this);
return RenderObject::createObject(this, style);
}
}