| Index: third_party/WebKit/Source/core/html/HTMLElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLElement.cpp b/third_party/WebKit/Source/core/html/HTMLElement.cpp
|
| index d51c8af139df42391dc705dd238188417d9534fc..9755528d4b2eb6bee6591e07cba4f35ae9ae223a 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLElement.cpp
|
| @@ -810,7 +810,7 @@ TextDirection HTMLElement::directionalityIfhasDirAutoAttribute(
|
| bool& isAuto) const {
|
| isAuto = hasDirectionAuto();
|
| if (!isAuto)
|
| - return TextDirection::Ltr;
|
| + return TextDirection::kLtr;
|
| return directionality();
|
| }
|
|
|
| @@ -864,7 +864,7 @@ TextDirection HTMLElement::directionality(
|
| }
|
| if (strongDirectionalityTextNode)
|
| *strongDirectionalityTextNode = 0;
|
| - return TextDirection::Ltr;
|
| + return TextDirection::kLtr;
|
| }
|
|
|
| bool HTMLElement::selfOrAncestorHasDirAutoAttribute() const {
|
|
|