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

Unified Diff: LayoutTests/http/tests/serviceworker/current-on-reload.html

Issue 265943003: Add blink-side binding code for navigator.serviceWorker.current (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebased cached properties access tests Created 6 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
Index: LayoutTests/http/tests/serviceworker/current-on-reload.html
diff --git a/LayoutTests/http/tests/serviceworker/current-on-reload.html b/LayoutTests/http/tests/serviceworker/current-on-reload.html
new file mode 100644
index 0000000000000000000000000000000000000000..477a5c003b0837870ef15b75f7bea6f578755d2b
--- /dev/null
+++ b/LayoutTests/http/tests/serviceworker/current-on-reload.html
@@ -0,0 +1,55 @@
+<!DOCTYPE html>
+<title>Service Worker: Current on reload</title>
+<script src="../resources/testharness.js"></script>
+<script src="../resources/testharnessreport.js"></script>
+<script src="resources/test-helpers.js"></script>
+<script src="resources/testutils.js"></script>
+<body>
+<script>
+var t = async_test('current is set upon reload after registration');
+t.step(function() {
+ var reloaded = false;
+ var scope = 'resources/blank.html';
+ navigator.serviceWorker.unregister(scope).then(
+ doTest,
+ unreached_rejection(t, 'Unregister should not fail')
+ );
+
+ function doTest() {
+ with_iframe(scope, t.step_func(onIframeLoad));
+ }
+
+ function onIframeLoad(frame) {
+ var w = frame.contentWindow;
+
+ function onActive(event) {
+ assert_equals(w.navigator.serviceWorker.current, null,
+ 'current should be null until the document is reloaded');
+ reloaded = true;
+ w.location.reload();
+ }
+
+ function onRegister(worker) {
+ worker.addEventListener('statechange', t.step_func(function(event) {
+ if (event.target.state == 'active')
+ onActive();
+ }));
+ }
+
+ if (reloaded) {
+ assert_true(w.navigator.serviceWorker.current instanceof w.ServiceWorker,
+ 'current should be a ServiceWorker object upon reload');
+ t.done();
+ return;
+ }
+
+ w.navigator.serviceWorker.register(
+ 'worker-no-op.js', {scope: 'blank.html'}
+ ).then(
+ t.step_func(onRegister),
+ unreached_rejection(t, 'Registration should succeed, but failed')
+ );
+ }
+});
+</script>
+</body>

Powered by Google App Engine
This is Rietveld 408576698