1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
<!DOCTYPE html>
<title>Test Notification</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
<script src="/common/utils.js"></script>
<script src="/common/dispatcher/dispatcher.js"></script>
<script src="resources/utils.js"></script>
<body>
<script>
promise_test(async () => {
// Notification permission must be allowed or we cannot confirm that
// "new Notification" failed in a fenced frame.
await test_driver.set_permission({name: 'notifications'}, 'granted', true);
assert_equals(Notification.permission, 'granted');
const frame = attachFencedFrameContext();
try {
await frame.execute(() => {
const notification = new Notification('Test notification');
return new Promise((resolve, reject) => {
// "new Notification" inside the fenced frame should fail even if it is
// allowed in the primary main frame.
notification.addEventListener('error', resolve);
notification.addEventListener('show', reject);
});
});
} catch(e) {
assert_unreached('Notification was shown; want not to be shown.' + e);
}
}, 'new Notification should fail inside a fenced frame');
promise_test(async () => {
// Notification permission must be allowed or we cannot confirm that
// "new Notification" failed in a fenced frame.
await test_driver.set_permission({name: 'notifications'}, 'granted', true);
assert_equals(Notification.permission, 'granted');
const frame = attachFencedFrameContext();
const message = await frame.execute(async () => {
const getController = () => {
if (navigator.serviceWorker.controller) {
return navigator.serviceWorker.controller;
}
return new Promise(resolve => {
navigator.serviceWorker.addEventListener('controllerchange', () => {
resolve(navigator.serviceWorker.controller);
});
});
};
await navigator.serviceWorker.register(
'notification-sw.js', { scope: location.href });
const ctrl = await getController();
return new Promise(resolve => {
ctrl.postMessage('constructor');
navigator.serviceWorker.onmessage = e => {
resolve(e.data);
};
});
});
assert_equals(
message, "Failed to construct 'Notification': Illegal constructor.");
}, 'new Notification should fail from the service worker in a fenced frame');
promise_test(async () => {
// Notification permission must be allowed or we cannot confirm that
// "new Notification" failed in a fenced frame.
await test_driver.set_permission({name: 'notifications'}, 'granted', true);
assert_equals(Notification.permission, 'granted');
const frame = attachFencedFrameContext();
const message = await frame.execute(async () => {
const getController = () => {
if (navigator.serviceWorker.controller) {
return navigator.serviceWorker.controller;
}
return new Promise(resolve => {
navigator.serviceWorker.addEventListener('controllerchange', () => {
resolve(navigator.serviceWorker.controller);
});
});
};
await navigator.serviceWorker.register(
'notification-sw.js', { scope: location.href });
const ctrl = await getController();
return new Promise(resolve => {
ctrl.postMessage('showNotification');
navigator.serviceWorker.onmessage = e => {
resolve(e.data);
};
});
});
assert_equals(message,
"Failed to execute 'showNotification' on 'ServiceWorkerRegistration': " + "showNotification() is not allowed in fenced frames.",);
}, 'showNotification() should fail from the service worker in a fenced frame');
</script>
</body>
|