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

Unified Diff: third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp

Issue 2614883007: Change computed style enums to be prefixed with 'k'. (Closed)
Patch Set: Rebase on ToT. Created 3 years, 11 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
Index: third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp
diff --git a/third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp b/third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp
index fe1145530975508cbfc1c318fb3ebb6d7b488bc9..8daaf65db0fef4d4a266ef92fbb44a3e23fb3241 100644
--- a/third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp
+++ b/third_party/WebKit/Source/core/html/HTMLFormControlElement.cpp
@@ -471,8 +471,8 @@ void HTMLFormControlElement::updateVisibleValidationMessage() {
m_hasValidationMessage = true;
ValidationMessageClient* client = &page->validationMessageClient();
- TextDirection messageDir = TextDirection::Ltr;
- TextDirection subMessageDir = TextDirection::Ltr;
+ TextDirection messageDir = TextDirection::kLtr;
+ TextDirection subMessageDir = TextDirection::kLtr;
String subMessage = validationSubMessage().stripWhiteSpace();
if (message.isEmpty())
client->hideValidationMessage(*this);

Powered by Google App Engine
This is Rietveld 408576698