Chromium Code Reviews| Index: third_party/WebKit/Source/modules/fetch/GlobalFetch.cpp |
| diff --git a/third_party/WebKit/Source/modules/fetch/GlobalFetch.cpp b/third_party/WebKit/Source/modules/fetch/GlobalFetch.cpp |
| index 258978c5803247f2d470ef0cdbc0471da6ef2f37..25c7a74f52714a0c22a98ec95e68607c0c6a6f74 100644 |
| --- a/third_party/WebKit/Source/modules/fetch/GlobalFetch.cpp |
| +++ b/third_party/WebKit/Source/modules/fetch/GlobalFetch.cpp |
| @@ -45,10 +45,6 @@ class GlobalFetchImpl final |
| exceptionState.throwTypeError("The global scope is shutting down."); |
| return ScriptPromise(); |
| } |
| - if (m_fetchManager->isStopped()) { |
|
haraken
2016/12/07 06:05:29
If this returns true, scriptState->contextIsValid(
|
| - exceptionState.throwTypeError("The global scope is shutting down."); |
| - return ScriptPromise(); |
| - } |
| // "Let |r| be the associated request of the result of invoking the |
| // initial value of Request as constructor with |input| and |init| as |