| Index: Source/core/html/forms/TimeInputType.cpp
|
| diff --git a/Source/core/html/forms/TimeInputType.cpp b/Source/core/html/forms/TimeInputType.cpp
|
| index 68143304ada7f774656d0ab825b01e8697af52ce..0ec641c072c5576d518f2f43640d8cf196470c26 100644
|
| --- a/Source/core/html/forms/TimeInputType.cpp
|
| +++ b/Source/core/html/forms/TimeInputType.cpp
|
| @@ -106,7 +106,7 @@ void TimeInputType::warnIfValueIsInvalid(const String& value) const
|
| {
|
| if (value != element().sanitizeValue(value)) {
|
| element().document().addConsoleMessage(ConsoleMessage::create(RenderingMessageSource, WarningMessageLevel,
|
| - String::format("The specified value '%s' does not conform to the required format. The format is 'HH:mm', 'HH:mm:ss' or 'HH:mm:ss.SSS' where HH is 00-23, mm is 00-59, ss is 00-59, and SSS is 000-999.", value.utf8().data())));
|
| + String::format("The specified value %s does not conform to the required format. The format is \"HH:mm\", \"HH:mm:ss\" or \"HH:mm:ss.SSS\" where HH is 00-23, mm is 00-59, ss is 00-59, and SSS is 000-999.", JSONValue::quoteString(value).utf8().data())));
|
| }
|
| }
|
|
|
|
|