Fix message text in number and URL input tag
authorjinwoo jeong <jw00.jeong@samsung.com>
Fri, 29 Mar 2013 04:53:11 +0000 (13:53 +0900)
committerjinwoo jeong <jw00.jeong@samsung.com>
Fri, 29 Mar 2013 04:53:11 +0000 (13:53 +0900)
[Title] Fix message text in number and URL input tag
[Issue#] N_SE-28998
[Problem] Wrong message in number and URL input tag
[Cause] N/A
[Solution] modify message text.

Change-Id: Ib80557fa1e7cf3d011c4fec40a49bb080ecd76e8

Source/WebCore/platform/efl/tizen/LocalizedStringsTizen.cpp

index b7a9e90..8ed509b 100644 (file)
@@ -512,7 +512,7 @@ String validationMessageTypeMismatchForMultipleEmailText()
 
 String validationMessageTypeMismatchForURLText()
 {
-    return String::fromUTF8("type mismatch");
+    return String::fromUTF8("Please enter a URL");
 }
 
 String validationMessageValueMissingText()
@@ -552,8 +552,7 @@ String validationMessageValueMissingForSelectText()
 
 String validationMessageBadInputForNumberText()
 {
-    notImplemented();
-    return validationMessageTypeMismatchText();
+    return String::fromUTF8("Please enter a number");
 }
 
 String missingPluginText()