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 abbe1631d8ce85153d85423b13722d05840a3afd..13c2abf9b6f03339f420ecb3730c95bca603d330 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGParsingError.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGParsingError.cpp |
@@ -44,6 +44,8 @@ std::pair<const char*, const char*> messageForStatus(SVGParseStatus status) |
return std::make_pair("Expected moveto path command ('M' or 'm'), ", "."); |
case SVGParseStatus::ExpectedNumber: |
return std::make_pair("Expected number, ", "."); |
+ case SVGParseStatus::ExpectedNumberOrPercentage: |
+ return std::make_pair("Expected number or percentage, ", "."); |
case SVGParseStatus::ExpectedPathCommand: |
return std::make_pair("Expected path command, ", "."); |
case SVGParseStatus::ExpectedStartOfArguments: |