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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/rejections.html

Issue 2888823005: Remove duplicate service worker "register" test (Closed)
Patch Set: Created 3 years, 7 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/http/tests/serviceworker/rejections.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/rejections.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/rejections.html
deleted file mode 100644
index 2631f35274771a8d0ba38430db25fe1844bb9ee0..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/rejections.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<!DOCTYPE html>
-<title>Service Worker: Rejection Types</title>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<script>
-
-(function() {
- var t = async_test('Rejections are DOMExceptions');
- t.step(function() {
-
- navigator.serviceWorker.register('http://example.com').then(
- t.step_func(function() { assert_unreached('Registration should fail'); }),
- t.step_func(function(reason) {
- assert_true(reason instanceof DOMException);
- assert_true(reason instanceof Error);
- t.done();
- }));
- });
-}());
-
-</script>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698