mirror of
https://github.com/servo/servo.git
synced 2025-08-29 17:18:23 +01:00
Update web-platform-tests to revision 8a2ceb5f18911302b7a5c1cd2791f4ab50ad4326
This commit is contained in:
parent
462c272380
commit
1f531f66ea
5377 changed files with 174916 additions and 84369 deletions
|
@ -0,0 +1,22 @@
|
|||
<!DOCTYPE html>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="resources/fake-devices.js"></script>
|
||||
<script src="resources/usb-helpers.js"></script>
|
||||
<script>
|
||||
'use strict';
|
||||
|
||||
usb_test(() => {
|
||||
return getFakeDevice().then(({ device }) => {
|
||||
let evt = new USBConnectionEvent('connect', { device: device });
|
||||
assert_equals(evt.type, 'connect');
|
||||
assert_equals(evt.device, device);
|
||||
});
|
||||
}, 'Can construct a USBConnectionEvent with a device');
|
||||
|
||||
test(t => {
|
||||
assert_throws(TypeError(), () =>
|
||||
new USBConnectionEvent('connect', { device: null }));
|
||||
assert_throws(TypeError(), () => new USBConnectionEvent('connect', {}));
|
||||
}, 'Cannot construct a USBConnectionEvent without a device');
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue