| Index: third_party/WebKit/Source/core/svg/SVGEnumeration.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGEnumeration.cpp b/third_party/WebKit/Source/core/svg/SVGEnumeration.cpp
|
| index de0f080c1953f2e94cab20fffb7a4ecb6bf75baa..3feca34d3b41d144e5d9494e88d06b5f9d065c63 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGEnumeration.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGEnumeration.cpp
|
| @@ -63,7 +63,8 @@ void SVGEnumerationBase::setValue(unsigned short value) {
|
| SVGParsingError SVGEnumerationBase::setValueAsString(const String& string) {
|
| for (const auto& entry : m_entries) {
|
| if (string == entry.second) {
|
| - // 0 corresponds to _UNKNOWN enumeration values, and should not be settable.
|
| + // 0 corresponds to _UNKNOWN enumeration values, and should not be
|
| + // settable.
|
| ASSERT(entry.first);
|
| m_value = entry.first;
|
| notifyChange();
|
|
|