mirror of
https://github.com/servo/servo.git
synced 2025-08-03 20:50:07 +01:00
Update web-platform-tests to revision 345300fad3945a5f1441fb2b2001109ca48f36e8
This commit is contained in:
parent
71ba247942
commit
05db47be0f
109 changed files with 2576 additions and 1228 deletions
|
@ -0,0 +1,17 @@
|
|||
'use strict';
|
||||
|
||||
importScripts('/resources/testharness.js');
|
||||
|
||||
const header = 'Feature-Policy header {"serial" : []}';
|
||||
let workerType;
|
||||
|
||||
if (typeof postMessage === 'function') {
|
||||
workerType = 'dedicated';
|
||||
}
|
||||
|
||||
promise_test(() => navigator.serial.getPorts().then(
|
||||
() => assert_unreached('expected promise to reject with SecurityError'),
|
||||
error => assert_equals(error.name, 'SecurityError')),
|
||||
`Inherited ${header} disallows ${workerType} workers.`);
|
||||
|
||||
done();
|
Loading…
Add table
Add a link
Reference in a new issue