Chromium Code Reviews| Index: LayoutTests/http/tests/serviceworker/ServiceWorkerGlobalScope/registration-attribute.html |
| diff --git a/LayoutTests/http/tests/serviceworker/ServiceWorkerGlobalScope/registration-attribute.html b/LayoutTests/http/tests/serviceworker/ServiceWorkerGlobalScope/registration-attribute.html |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..bb5950e388cabad6c725c42637f2eed336af945d |
| --- /dev/null |
| +++ b/LayoutTests/http/tests/serviceworker/ServiceWorkerGlobalScope/registration-attribute.html |
| @@ -0,0 +1,27 @@ |
| +<!DOCTYPE html> |
| +<title>ServiceWorkerGlobalScope: registration</title> |
| +<script src="../../resources/testharness.js"></script> |
| +<script src="../../resources/testharnessreport.js"></script> |
| +<script src="../resources/test-helpers.js"></script> |
| +<script> |
| + |
| +promise_test(function(t) { |
| + var script = "resources/registration-attribute-worker.js"; |
| + var scope = "resources/scope/registration-attribute"; |
|
falken
2015/01/27 04:08:15
nit: single-quotes for javascript strings
nhiroki
2015/01/27 07:51:26
Done.
|
| + |
| + return navigator.serviceWorker.register(script, {scope: scope}) |
|
falken
2015/01/27 04:08:15
nit: we typically do unregister_and_register() in
nhiroki
2015/01/27 07:51:26
Done.
|
| + .then(function(registration) { |
| + return wait_for_state(t, registration.installing, 'activated'); |
| + }) |
| + .then(function() { return with_iframe(scope); }) |
| + .then(function(frame) { |
| + assert_equals( |
| + frame.contentDocument.body.textContent, |
| + 'Hello, world!', |
| + 'Service Worker should respond to fetch'); |
| + frame.remove(); |
| + return service_worker_unregister_and_done(t, scope); |
| + }); |
| + }, 'Verify registration attribute on ServiceWorkerGlobalScope'); |
| + |
| +</script> |