Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(760)

Unified Diff: Source/core/html/shadow/DateTimeEditElement.cpp

Issue 1119663002: Making Unicode character names consistent (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase patch Created 5 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/html/forms/TypeAhead.cpp ('k') | Source/core/html/track/vtt/BufferedLineReader.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « Source/core/html/forms/TypeAhead.cpp ('k') | Source/core/html/track/vtt/BufferedLineReader.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698