Update web-platform-tests to revision 2b7dace05fc1869398ee24f84fda4c0e4c0455ae

This commit is contained in:
WPT Sync Bot 2018-08-31 21:37:12 +00:00 committed by Tom Servo
parent b23125d590
commit 6c901de216
844 changed files with 19802 additions and 3093 deletions

View file

@ -0,0 +1,23 @@
// 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);
assertDeviceInfoEquals(configuration, fakeDeviceInit.configurations[1]);
}, 'Can construct a USBConfiguration.');
usb_test(async () => {
let { device } = await getFakeDevice();
try {
let configuration =
new USBConfiguration(device, device.configurations.length + 1);
assert_unreached(
'USBConfiguration should reject an invalid configuration value');
} catch (error) {
assert_equals(error.name, 'RangeError');
}
}, 'Constructing a USBConfiguration with an invalid configuration value ' +
'throws a range error.');