| 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 f218924ad753a31326776bde7a87056fdcc826c0..fb7cb4e1292180c5300b0d15aa4a129a8a68c851 100644
|
| --- a/third_party/WebKit/Source/modules/fetch/Response.cpp
|
| +++ b/third_party/WebKit/Source/modules/fetch/Response.cpp
|
| @@ -204,8 +204,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>(
|
|
|