| Index: third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| index 22c9acdecad7fc9b01f776650e8885a8d5bcc3b9..1785f378be07b67864566d4bd11644377e68283e 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| @@ -322,7 +322,8 @@ void LayoutObject::addChild(LayoutObject* newChild, LayoutObject* beforeChild) {
|
| children->insertChildNode(this, newChild, beforeChild);
|
| }
|
|
|
| - if (newChild->isText() && newChild->style()->textTransform() == CAPITALIZE)
|
| + if (newChild->isText() &&
|
| + newChild->style()->textTransform() == ETextTransform::Capitalize)
|
| toLayoutText(newChild)->transformText();
|
|
|
| // SVG creates layoutObjects for <g display="none">, as SVG requires children
|
|
|