Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(308)

Unified Diff: LayoutTests/http/tests/serviceworker/fetch-event.html

Issue 588993002: [ServiceWorker] Remove the test for the rejected result of FetchEvent from fetch-event.html (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | LayoutTests/http/tests/serviceworker/resources/fetch-event-test-worker.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/serviceworker/fetch-event.html
diff --git a/LayoutTests/http/tests/serviceworker/fetch-event.html b/LayoutTests/http/tests/serviceworker/fetch-event.html
index e51dcb1f24fc8025a9bd894c15ca9f5804cae2ef..d8dc752fda4cd5927d794b6ea33022ef062cec27 100644
--- a/LayoutTests/http/tests/serviceworker/fetch-event.html
+++ b/LayoutTests/http/tests/serviceworker/fetch-event.html
@@ -99,21 +99,6 @@ async_test(function(t) {
}, 'Service Worker responds to fetch event with null response body', properties);
async_test(function(t) {
- var scope = 'resources/simple.html?reject';
- service_worker_unregister_and_register(t, worker, scope)
- .then(function(reg) { return wait_for_activated(t, reg); })
- .then(function() { return with_iframe(scope); })
- .then(function(frame) {
- assert_equals(frame.contentDocument.body.textContent,
- '',
- 'Response should be a NetworkError');
- unload_iframe(frame);
- return service_worker_unregister_and_done(t, scope);
- })
- .catch(unreached_rejection(t));
- }, 'Service Worker rejects fetch event', properties);
-
-async_test(function(t) {
var scope = 'resources/simple.html?fetch';
service_worker_unregister_and_register(t, worker, scope)
.then(function(reg) { return wait_for_activated(t, reg); })
« no previous file with comments | « no previous file | LayoutTests/http/tests/serviceworker/resources/fetch-event-test-worker.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698