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 ede273a7f22ca9f0553589a10c1da223395288f2..da2345ddc9f97f47dccb3a273603c990d72bf5a7 100644 |
--- a/third_party/WebKit/Source/core/svg/SVGParsingError.cpp |
+++ b/third_party/WebKit/Source/core/svg/SVGParsingError.cpp |
@@ -32,6 +32,8 @@ std::pair<const char*, const char*> messageForStatus(SVGParseStatus status) |
return std::make_pair("Expected 'true' or 'false', ", "."); |
case SVGParseStatus::ExpectedEnumeration: |
return std::make_pair("Unrecognized enumerated value, ", "."); |
+ case SVGParseStatus::ExpectedLength: |
+ return std::make_pair("Expected length, ", "."); |
case SVGParseStatus::ExpectedNumber: |
return std::make_pair("Expected number, ", "."); |
case SVGParseStatus::NegativeValue: |