Index: third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h |
diff --git a/third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h b/third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h |
index 2bea7c4b672cbfd6dce0881322928401fbbf0be6..89c1d7990c1c0f6d83561dd7a43c7aae4bce9ec9 100644 |
--- a/third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h |
+++ b/third_party/WebKit/Source/core/svg/properties/SVGListPropertyHelper.h |
@@ -229,8 +229,9 @@ ItemProperty* SVGListPropertyHelper<Derived, ItemProperty>::removeItem( |
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 nullptr; |
} |
ASSERT(m_values.at(index)->ownerList() == this); |
@@ -283,8 +284,9 @@ bool SVGListPropertyHelper<Derived, ItemProperty>::checkIndexBound( |
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; |
} |