| Index: third_party/WebKit/Source/core/svg/SVGParsingError.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGParsingError.cpp b/third_party/WebKit/Source/core/svg/SVGParsingError.cpp
|
| index c6e9fc4eaebac2f0e9264330aaeff88392574466..abbe1631d8ce85153d85423b13722d05840a3afd 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGParsingError.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGParsingError.cpp
|
| @@ -46,6 +46,10 @@ std::pair<const char*, const char*> messageForStatus(SVGParseStatus status)
|
| return std::make_pair("Expected number, ", ".");
|
| case SVGParseStatus::ExpectedPathCommand:
|
| return std::make_pair("Expected path command, ", ".");
|
| + case SVGParseStatus::ExpectedStartOfArguments:
|
| + return std::make_pair("Expected '(', ", ".");
|
| + case SVGParseStatus::ExpectedTransformFunction:
|
| + return std::make_pair("Expected transform function, ", ".");
|
| case SVGParseStatus::NegativeValue:
|
| return std::make_pair("A negative value is not valid. (", ")");
|
| case SVGParseStatus::ZeroValue:
|
|
|