| Index: third_party/WebKit/Source/core/html/forms/RadioInputType.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/forms/RadioInputType.cpp b/third_party/WebKit/Source/core/html/forms/RadioInputType.cpp
|
| index 22790940dfe0207b69e0f09fb5889937ff751beb..92e36ebce7b09eeda2c1bcb4b27a8de7f1571c82 100644
|
| --- a/third_party/WebKit/Source/core/html/forms/RadioInputType.cpp
|
| +++ b/third_party/WebKit/Source/core/html/forms/RadioInputType.cpp
|
| @@ -106,7 +106,7 @@ void RadioInputType::handleKeydownEvent(KeyboardEvent* event) {
|
| Document& document = element().document();
|
| if (isSpatialNavigationEnabled(document.frame()))
|
| return;
|
| - bool forward = computedTextDirection() == TextDirection::Rtl
|
| + bool forward = computedTextDirection() == TextDirection::kRtl
|
| ? (key == "ArrowDown" || key == "ArrowLeft")
|
| : (key == "ArrowDown" || key == "ArrowRight");
|
|
|
|
|