| Index: third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
|
| diff --git a/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp b/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
|
| index a54de38ee4df0d414d6144ebe92c23c4ca407c10..4307504e4807af7464039a06700f8717184465e6 100644
|
| --- a/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
|
| +++ b/third_party/WebKit/Source/modules/webdatabase/SQLResultSetRowList.cpp
|
| @@ -49,8 +49,9 @@ ScriptValue SQLResultSetRowList::item(ScriptState* scriptState,
|
| ExceptionState& exceptionState) {
|
| if (index >= length()) {
|
| exceptionState.throwDOMException(
|
| - IndexSizeError, ExceptionMessages::indexExceedsMaximumBound<unsigned>(
|
| - "index", index, length()));
|
| + IndexSizeError,
|
| + ExceptionMessages::indexExceedsMaximumBound<unsigned>("index", index,
|
| + length()));
|
| return ScriptValue();
|
| }
|
|
|
|
|