Update web-platform-tests to revision b'b728032f59a396243864b0f8584e7211e3632005'

This commit is contained in:
WPT Sync Bot
2022-11-10 01:22:36 +00:00
parent ace9b32b1c
commit df68c4e5d1
15632 changed files with 514865 additions and 155000 deletions

View File

@@ -1,16 +1,17 @@
<!DOCTYPE html>
<!--
https://wicg.github.io/nav-speculation/prerendering.html#patch-notifications
TODO(https://crbug.com/1198110): Add the following tests:
* Test the deferral of the promise if it is used during prerendering.
* Test Notification.permission returns "default" synchronously.
* Test the constructor returns synchronously while the creation of the
notification is deferred until activation.
-->
<title>Access to the Notification API is allowed after the prerendering state
changed </title>
<title>Access to the Notification API before and after prerender activation</title>
<meta name="timeout" content="long">
<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="resources/utils.js"></script>
<body>
<script>
@@ -18,10 +19,13 @@ TODO(https://crbug.com/1198110): Add the following tests:
setup(() => assertSpeculationRulesIsSupported());
promise_test(async t => {
const bc = new BroadcastChannel('test-channel');
const uid = token();
const bc = new PrerenderChannel('test-channel', uid);
t.add_cleanup(_ => bc.close());
await test_driver.set_permission({name: 'notifications'}, 'granted', true);
await test_driver.set_permission({
name: 'notifications'
}, 'granted', true);
const gotMessage = new Promise(resolve => {
bc.addEventListener('message', e => {
resolve(e.data);
@@ -29,7 +33,7 @@ promise_test(async t => {
once: true
});
});
const url = `resources/notification.html`;
const url = `resources/notification-on-activation.html?uid=${uid}`;
window.open(url, '_blank', 'noopener');
const result = await gotMessage;
@@ -37,5 +41,66 @@ promise_test(async t => {
}, `it is allowed to access the notification API in the prerenderingchange
event`);
promise_test(async t => {
const uid = token();
const bc = new PrerenderChannel('test-channel', uid);
t.add_cleanup(_ => bc.close());
await test_driver.set_permission({
name: 'notifications'
}, 'granted', true);
const gotMessage = new Promise(resolve => {
bc.addEventListener('message', e => {
resolve(e.data);
}, {
once: true
});
});
const url = `resources/notification-before-activation.html?uid=${uid}`;
window.open(url, '_blank', 'noopener');
const result = await gotMessage;
const expected = [{
event: 'Notification permission is default',
prerendering: true
},
{
event: 'started waiting notification',
prerendering: true
},
{
event: 'prerendering change',
prerendering: false
},
{
event: 'permission was granted',
prerendering: false
},
{
event: 'notification displayed',
prerendering: false
},
{
event: 'finished waiting notification',
prerendering: false
},
];
length = Math.min(result.length, expected.length);
let i = 0;
for (i = 0; i < length; i++) {
assert_equals(result[i].event, expected[i].event, `event[${i}]`);
assert_equals(result[i].prerendering, expected[i].prerendering,
`prerendering[${i}]`);
}
assert_equals(i, expected.length);
// Send a close signal to PrerenderEventCollector on the prerendered page.
new PrerenderChannel('close', uid).postMessage('');
},
`Displaying Notification should be deferred until the prerendered page is
activated`);
</script>
</body>