| Index: third_party/WebKit/Source/core/html/HTMLRubyElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLRubyElement.cpp b/third_party/WebKit/Source/core/html/HTMLRubyElement.cpp
|
| index 966eb222b10220e362aa23c9e177db18410776c5..cb7b429eac41b8c20d178a2e21e64adc695cbbd5 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLRubyElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLRubyElement.cpp
|
| @@ -17,9 +17,9 @@ inline HTMLRubyElement::HTMLRubyElement(Document& document)
|
| DEFINE_NODE_FACTORY(HTMLRubyElement)
|
|
|
| LayoutObject* HTMLRubyElement::createLayoutObject(const ComputedStyle& style) {
|
| - if (style.display() == EDisplay::Inline)
|
| + if (style.display() == EDisplay::kInline)
|
| return new LayoutRubyAsInline(this);
|
| - if (style.display() == EDisplay::Block)
|
| + if (style.display() == EDisplay::kBlock)
|
| return new LayoutRubyAsBlock(this);
|
| return LayoutObject::createObject(this, style);
|
| }
|
|
|