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

Unified Diff: LayoutTests/http/tests/serviceworker/chromium/notificationclick-can-focus.html

Issue 896043004: Tests for WaitUntilObserver and focus/openining windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@sw_client_focus_cleanup
Patch Set: review comments Created 5 years, 10 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 | LayoutTests/http/tests/serviceworker/chromium/notificationclick-can-openwindow.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/http/tests/serviceworker/chromium/notificationclick-can-focus.html
diff --git a/LayoutTests/http/tests/serviceworker/chromium/notificationclick-can-focus.html b/LayoutTests/http/tests/serviceworker/chromium/notificationclick-can-focus.html
new file mode 100644
index 0000000000000000000000000000000000000000..4f4bb133497dd53545aa9200888176827086f809
--- /dev/null
+++ b/LayoutTests/http/tests/serviceworker/chromium/notificationclick-can-focus.html
@@ -0,0 +1,55 @@
+<!DOCTYPE html>
+<title>Service Worker: notificationclick can focus WindowClient</title>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+<script src="../resources/test-helpers.js"></script>
+<script>
+if (window.testRunner)
+ testRunner.grantWebNotificationPermission(location.origin, true);
+
+var t = async_test('notificationclick can focus WindowClient');
+t.step(function() {
+ var scope = 'resources/blank.html'
+ service_worker_unregister_and_register(
+ t, 'resources/notificationclick-can-focus.js', scope)
+ .then(function(registration) {
+ return wait_for_state(t, registration.installing, 'activated');
+ })
+ .then(function() { return with_iframe(scope); })
+ .then(function(frame) {
+ var w = frame.contentWindow;
+ w.onmessage = t.step_func(onMessage);
+ w.navigator.serviceWorker.controller.postMessage('start');
+ })
+ .catch(unreached_rejection(t));
+
+ var result = [];
+ var expected = ['focus() outside of a notificationclick event failed',
+ 'focus() in notificationclick outside of waitUntil but in stack succeeded',
+ 'focus() in notificationclick outside of waitUntil not in stack failed',
+ 'focus() in notificationclick\'s waitUntil suceeded',
+ 'focus() called twice failed',
+ 'focus() failed after timeout',
+ 'focus() failed because a window was opened before'];
+
+ function onMessage(e) {
+ var message = e.data;
+
+ if (typeof(message) === 'object') {
+ if (message.type !== 'click')
+ return;
+ if (window.testRunner)
+ testRunner.simulateWebNotificationClick(message.title);
+ return;
+ }
+
+ if (message === 'quit') {
+ assert_array_equals(result, expected,
+ 'Worker should post back expected messages.');
+ service_worker_unregister_and_done(t, scope);
+ } else {
+ result.push(message);
+ }
+ }
+ });
+</script>
« no previous file with comments | « no previous file | LayoutTests/http/tests/serviceworker/chromium/notificationclick-can-openwindow.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698