| Index: third_party/WebKit/Source/web/WebFormControlElement.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebFormControlElement.cpp b/third_party/WebKit/Source/web/WebFormControlElement.cpp
|
| index 15872db57fdef1c0df52a1cc6e3e2ccc7e98684c..9dd3ae31e9f34926ecac0a5db9515883d522f05a 100644
|
| --- a/third_party/WebKit/Source/web/WebFormControlElement.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFormControlElement.cpp
|
| @@ -179,9 +179,9 @@ int WebFormControlElement::selectionEnd() const {
|
| WebString WebFormControlElement::alignmentForFormData() const {
|
| if (const ComputedStyle* style =
|
| constUnwrap<HTMLFormControlElement>()->computedStyle()) {
|
| - if (style->textAlign() == RIGHT)
|
| + if (style->textAlign() == ETextAlign::Right)
|
| return WebString::fromUTF8("right");
|
| - if (style->textAlign() == LEFT)
|
| + if (style->textAlign() == ETextAlign::Left)
|
| return WebString::fromUTF8("left");
|
| }
|
| return WebString();
|
|
|