mirror of
https://github.com/servo/servo.git
synced 2025-08-01 03:30:33 +01:00
Update web-platform-tests to revision cd44958a002b1ad494168e0290554644de84526e
This commit is contained in:
parent
2ed23ce4c9
commit
4443426308
103 changed files with 1740 additions and 1138 deletions
|
@ -27,6 +27,17 @@ backgroundFetchTest(async (test, backgroundFetch) => {
|
|||
assert_equals(registration.id, registrationId);
|
||||
|
||||
const message = await getMessageFromServiceWorker();
|
||||
assert_equals(message.update, 'updateUI may only be called once.');
|
||||
assert_equals(message.update, 'InvalidStateError');
|
||||
|
||||
}, 'Background Fetch updateUI called twice fails', swName);
|
||||
|
||||
backgroundFetchTest(async (test, backgroundFetch) => {
|
||||
const registrationId = 'update-inactive';
|
||||
const registration =
|
||||
await backgroundFetch.fetch(registrationId, 'resources/feature-name.txt');
|
||||
assert_equals(registration.id, registrationId);
|
||||
|
||||
const message = await getMessageFromServiceWorker();
|
||||
assert_equals(message.update, 'InvalidStateError');
|
||||
|
||||
}, 'Background Fetch updateUI fails when event is not active', swName);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue