| Index: third_party/WebKit/Source/core/svg/SVGStringList.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGStringList.cpp b/third_party/WebKit/Source/core/svg/SVGStringList.cpp
|
| index be9c878d8bdb5866890c98f610736c27711fe4fe..a73ba09fa74435be6fbaae3126a4d20aa7a1759e 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGStringList.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGStringList.cpp
|
| @@ -137,8 +137,9 @@ bool SVGStringList::checkIndexBound(size_t index,
|
| ExceptionState& exceptionState) {
|
| if (index >= m_values.size()) {
|
| exceptionState.throwDOMException(
|
| - IndexSizeError, ExceptionMessages::indexExceedsMaximumBound(
|
| - "index", index, m_values.size()));
|
| + IndexSizeError,
|
| + ExceptionMessages::indexExceedsMaximumBound("index", index,
|
| + m_values.size()));
|
| return false;
|
| }
|
|
|
|
|