blob: 5d6fcbada10379373a979e354c03a652aaec0279 [file] [log] [blame]
<!doctype html>
<html>
<head>
<title>Notifications: Showing a notification with an image that takes some time to load.</title>
<script src="../resources/testharness.js"></script>
<script src="../resources/testharnessreport.js"></script>
<script src="../serviceworker/resources/test-helpers.js"></script>
<script src="resources/test-helpers.js"></script>
</head>
<body>
<script>
// Tests that showing a notification with an image that takes a non-trivial
// time to load still ends up resolving the promise.
async_test(function(test) {
var scope = 'resources/scope/' + location.pathname,
script = 'instrumentation-service-worker.js';
testRunner.setPermission('notifications', 'granted', location.origin, location.origin);
getActiveServiceWorkerWithMessagePort(test, script, scope).then(function(info) {
// (1) Display a Web Notification with an image that takes 200ms to load.
return info.registration.showNotification(scope, {
body: 'Hello, world!',
icon: '/resources/slow-image.php?redirect_name=square100.png&mimeType=image/png&sleep=200'
});
}).then(function() {
test.done();
}).catch(unreached_rejection(test));
}, 'Displaying a notification with an image that takes some time to load still resolves the promise.');
</script>
</body>
</html>