| Index: LayoutTests/http/tests/security/suborigins/suborigin-blocked-notifications.php
|
| diff --git a/LayoutTests/http/tests/security/suborigins/suborigin-blocked-notifications.php b/LayoutTests/http/tests/security/suborigins/suborigin-blocked-notifications.php
|
| deleted file mode 100644
|
| index b3802def35fcca1d9875701a525acf13f83092d2..0000000000000000000000000000000000000000
|
| --- a/LayoutTests/http/tests/security/suborigins/suborigin-blocked-notifications.php
|
| +++ /dev/null
|
| @@ -1,26 +0,0 @@
|
| -<?php
|
| -header("Content-Security-Policy: suborigin foobar");
|
| -?>
|
| -<!DOCTYPE html>
|
| -<html>
|
| -<head>
|
| -<title>Notifications are denied in suborigins.</title>
|
| -<script src="/resources/testharness.js"></script>
|
| -<script src="/resources/testharnessreport.js"></script>
|
| -</head>
|
| -<script>
|
| - testRunner.setPermission('notifications', 'granted', location.origin, location.origin);
|
| - Notification.requestPermission(function (status) {
|
| - assert_equals(status, 'default', 'The notification permission request should not be granted.');
|
| -
|
| - var notification = new Notification('My Notification');
|
| - notification.addEventListener('show', function() {
|
| - assert_unreached('The notification is not expected to be shown.');
|
| - });
|
| -
|
| - notification.addEventListener('error', function() {
|
| - done();
|
| - });
|
| - });
|
| -</script>
|
| -</html>
|
|
|