1// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "config.h"
6#include "core/html/HTMLRubyElement.h"
7
8#include "core/HTMLNames.h"
9#include "core/rendering/RenderRuby.h"
10
11namespace blink {
12
13using namespace HTMLNames;
14
15inline HTMLRubyElement::HTMLRubyElement(Document& document)
16    : HTMLElement(rubyTag, document)
17{
18}
19
20DEFINE_NODE_FACTORY(HTMLRubyElement)
21
22RenderObject* HTMLRubyElement::createRenderer(RenderStyle* style)
23{
24    if (style->display() == INLINE)
25        return new RenderRubyAsInline(this);
26    if (style->display() == BLOCK)
27        return new RenderRubyAsBlock(this);
28    return RenderObject::createObject(this, style);
29}
30
31}
32