| Index: Source/core/html/shadow/DateTimeEditElement.cpp
|
| diff --git a/Source/core/html/shadow/DateTimeEditElement.cpp b/Source/core/html/shadow/DateTimeEditElement.cpp
|
| index 5fa4258474c7bf6e5c477abc3f009714976ea35e..bfb69226c5af0b8b5c4cd406364450d51748bd89 100644
|
| --- a/Source/core/html/shadow/DateTimeEditElement.cpp
|
| +++ b/Source/core/html/shadow/DateTimeEditElement.cpp
|
| @@ -407,7 +407,7 @@ void DateTimeEditBuilder::visitLiteral(const String& text)
|
| if (m_parameters.locale.isRTL() && text.length()) {
|
| Direction dir = direction(text[0]);
|
| if (dir == SegmentSeparator || dir == WhiteSpaceNeutral || dir == OtherNeutral)
|
| - element->appendChild(Text::create(m_editElement.document(), String(&rightToLeftMark, 1)));
|
| + element->appendChild(Text::create(m_editElement.document(), String(&rightToLeftMarkCharacter, 1)));
|
| }
|
| element->appendChild(Text::create(m_editElement.document(), text));
|
| m_editElement.fieldsWrapperElement()->appendChild(element);
|
|
|