| Index: third_party/WebKit/Source/modules/fetch/Response.cpp
|
| diff --git a/third_party/WebKit/Source/modules/fetch/Response.cpp b/third_party/WebKit/Source/modules/fetch/Response.cpp
|
| index af07b7c464e9254238f02e9b2c22c275e1bd5c60..7a8ad09b960a7d4df3c3138cad3971c452cefd1d 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/Response.cpp
|
| +++ b/third_party/WebKit/Source/modules/fetch/Response.cpp
|
| @@ -203,8 +203,8 @@ Response* Response::create(ScriptState* scriptState,
|
| ExceptionState& exceptionState) {
|
| unsigned short status = init.status;
|
|
|
| - // "1. If |init|'s status member is not in the range 200 to 599, inclusive, throw a
|
| - // RangeError."
|
| + // "1. If |init|'s status member is not in the range 200 to 599, inclusive,
|
| + // throw a RangeError."
|
| if (status < 200 || 599 < status) {
|
| exceptionState.throwRangeError(
|
| ExceptionMessages::indexOutsideRange<unsigned>(
|
|
|