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..c41a97bff5ebc886c93e189ff4f086e93840da99 |
--- /dev/null |
+++ b/LayoutTests/http/tests/serviceworker/ServiceWorkerGlobalScope/registration-attribute.html |
@@ -0,0 +1,28 @@ |
+<!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"; |
+ |
+ return navigator.serviceWorker.register(script, {scope: scope}) |
+ .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'); |
falken
2015/01/19 08:45:04
let's remove the frame and then call unregister_an
nhiroki
2015/01/20 11:10:07
Done.
|
+ }) |
+ .then(function() { |
+ return service_worker_unregister_and_done(t, scope); |
+ }); |
+ }, 'Verify registration attribute on ServiceWorkerGlobalScope'); |
+ |
+</script> |