| Index: third_party/WebKit/Source/core/layout/LayoutTextControl.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTextControl.cpp b/third_party/WebKit/Source/core/layout/LayoutTextControl.cpp
|
| index addc049ee5b3263d9e7ba07c2bf846551dc92254..6d86cbc453444392b82e33257f842dddef2b0d3e 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTextControl.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTextControl.cpp
|
| @@ -67,8 +67,9 @@ void LayoutTextControl::StyleDidChange(StyleDifference diff,
|
|
|
| static inline void UpdateUserModifyProperty(TextControlElement& node,
|
| ComputedStyle& style) {
|
| - style.SetUserModify(node.IsDisabledOrReadOnly() ? READ_ONLY
|
| - : READ_WRITE_PLAINTEXT_ONLY);
|
| + style.SetUserModify(node.IsDisabledOrReadOnly()
|
| + ? EUserModify::kReadOnly
|
| + : EUserModify::kReadWritePlaintextOnly);
|
| }
|
|
|
| void LayoutTextControl::AdjustInnerEditorStyle(
|
|
|