| Index: third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| index 4c405b31ea763680c56d5b05d317711491e734a3..dfffaabaeb98aa079036b50203a94e73d39f34ef 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLInputElement.cpp
|
| @@ -1817,7 +1817,7 @@ bool HTMLInputElement::setupDateTimeChooserParameters(
|
| document().view()->contentsToScreen(pixelSnappedBoundingBox());
|
| parameters.doubleValue = m_inputType->valueAsDouble();
|
| parameters.isAnchorElementRTL =
|
| - m_inputTypeView->computedTextDirection() == RTL;
|
| + m_inputTypeView->computedTextDirection() == TextDirection::Rtl;
|
| if (HTMLDataListElement* dataList = this->dataList()) {
|
| HTMLDataListOptionsCollection* options = dataList->options();
|
| for (unsigned i = 0; HTMLOptionElement* option = options->item(i); ++i) {
|
|
|