WICG / webusb

Connecting hardware to the web.
https://wicg.github.io/webusb/
Other
1.3k stars 127 forks source link

remove 'require' from USBPermissionStorage.allowedDevices, to correct WebIDL syntax (fixes #118) #120

Closed pes10k closed 6 years ago

pes10k commented 6 years ago
dictionary USBPermissionStorage {
  required sequence<AllowedUSBDevice> allowedDevices = [];
};

Isn't valid WebIDL syntax. This patch removes the required directive.