| Index: third_party/WebKit/LayoutTests/http/tests/serviceworker/getregistration.html
|
| diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/getregistration.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/getregistration.html
|
| deleted file mode 100644
|
| index 8ab07c7ec74cd527f5fc63aa41d0ed1846f202dc..0000000000000000000000000000000000000000
|
| --- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/getregistration.html
|
| +++ /dev/null
|
| @@ -1,87 +0,0 @@
|
| -<!DOCTYPE html>
|
| -<script src="../resources/testharness.js"></script>
|
| -<script src="../resources/testharnessreport.js"></script>
|
| -<script src="resources/test-helpers.js"></script>
|
| -<script>
|
| -async_test(function(t) {
|
| - var documentURL = 'no-such-worker';
|
| - navigator.serviceWorker.getRegistration(documentURL)
|
| - .then(function(value) {
|
| - assert_equals(value, undefined,
|
| - 'getRegistration should resolve with undefined');
|
| - t.done();
|
| - })
|
| - .catch(unreached_rejection(t));
|
| - }, 'getRegistration');
|
| -
|
| -async_test(function(t) {
|
| - var scope = 'resources/scope/getregistration/normal';
|
| - var registration;
|
| - service_worker_unregister_and_register(t, 'resources/empty-worker.js',
|
| - scope)
|
| - .then(function(r) {
|
| - registration = r;
|
| - return navigator.serviceWorker.getRegistration(scope);
|
| - })
|
| - .then(function(value) {
|
| - assert_equals(
|
| - value, registration,
|
| - 'getRegistration should resolve to the same registration object');
|
| - service_worker_unregister_and_done(t, scope);
|
| - })
|
| - .catch(unreached_rejection(t));
|
| - }, 'Register then getRegistration');
|
| -
|
| -async_test(function(t) {
|
| - var scope = 'resources/scope/getregistration/url-with-fragment';
|
| - var documentURL = scope + '#ref';
|
| - var registration;
|
| - service_worker_unregister_and_register(t, 'resources/empty-worker.js',
|
| - scope)
|
| - .then(function(r) {
|
| - registration = r;
|
| - return navigator.serviceWorker.getRegistration(documentURL);
|
| - })
|
| - .then(function(value) {
|
| - assert_equals(
|
| - value, registration,
|
| - 'getRegistration should resolve to the same registration object');
|
| - service_worker_unregister_and_done(t, scope);
|
| - })
|
| - .catch(unreached_rejection(t));
|
| - }, 'Register then getRegistration with a URL having a fragment');
|
| -
|
| -async_test(function(t) {
|
| - var documentURL = 'http://example.com/';
|
| - navigator.serviceWorker.getRegistration(documentURL)
|
| - .then(function() {
|
| - assert_unreached(
|
| - 'getRegistration with an out of origin URL should fail');
|
| - }, function(reason) {
|
| - assert_equals(
|
| - reason.name, 'SecurityError',
|
| - 'getRegistration with an out of origin URL should fail');
|
| - t.done();
|
| - })
|
| - .catch(unreached_rejection(t));
|
| - }, 'getRegistration with a cross origin URL');
|
| -
|
| -async_test(function(t) {
|
| - var scope = 'resources/scope/getregistration/register-unregister';
|
| - service_worker_unregister_and_register(t, 'resources/empty-worker.js',
|
| - scope)
|
| - .then(function(registration) {
|
| - return registration.unregister();
|
| - })
|
| - .then(function() {
|
| - return navigator.serviceWorker.getRegistration(scope);
|
| - })
|
| - .then(function(value) {
|
| - assert_equals(value, undefined,
|
| - 'getRegistration should resolve with undefined');
|
| - t.done();
|
| - })
|
| - .catch(unreached_rejection(t));
|
| - }, 'Register then Unregister then getRegistration');
|
| -
|
| -</script>
|
|
|