mirror of
https://github.com/servo/servo.git
synced 2025-08-16 19:05:33 +01:00
Update web-platform-tests to revision 2b7dace05fc1869398ee24f84fda4c0e4c0455ae
This commit is contained in:
parent
b23125d590
commit
6c901de216
844 changed files with 19802 additions and 3093 deletions
|
@ -0,0 +1,33 @@
|
|||
// META: script=/webusb/resources/fake-devices.js
|
||||
// META: script=/webusb/resources/usb-helpers.js
|
||||
'use strict';
|
||||
|
||||
usb_test(async () => {
|
||||
let { device } = await getFakeDevice();
|
||||
let configuration = new USBConfiguration(
|
||||
device, device.configurations[1].configurationValue);
|
||||
let usbInterface = new USBInterface(
|
||||
configuration, configuration.interfaces[0].interfaceNumber);
|
||||
let alternateInterface = new USBAlternateInterface(
|
||||
usbInterface, usbInterface.alternates[1].alternateSetting);
|
||||
assertDeviceInfoEquals(
|
||||
alternateInterface,
|
||||
fakeDeviceInit.configurations[1].interfaces[0].alternates[1]);
|
||||
}, 'Can construct a USBAlternateInterface.');
|
||||
|
||||
usb_test(async () => {
|
||||
let { device } = await getFakeDevice();
|
||||
let configuration = new USBConfiguration(
|
||||
device, device.configurations[1].configurationValue);
|
||||
let usbInterface = new USBInterface(
|
||||
configuration, configuration.interfaces[0].interfaceNumber);
|
||||
try {
|
||||
let alternateInterface = new USBAlternateInterface(
|
||||
usbInterface, usbInterface.alternates.length);
|
||||
assert_unreached(
|
||||
'USBAlternateInterface should reject an invalid alternate setting');
|
||||
} catch (error) {
|
||||
assert_equals(error.name, 'RangeError');
|
||||
}
|
||||
}, 'Constructing a USBAlternateInterface with an invalid alternate setting ' +
|
||||
'throws a range error.');
|
Loading…
Add table
Add a link
Reference in a new issue