https://github.com/web-platform-tests/wpt
Raw File
Tip revision: b8dcfbef3d702adeff8d33ed6e954c7303c91eb9 authored by Simon Pieters on 28 June 2018, 17:29:40 UTC
Lint that META.yml files exist
Tip revision: b8dcfbe
usb.serviceworker.js
'use strict';
importScripts('/resources/testharness.js');

test(() => {
  assert_equals(typeof navigator.usb, 'undefined',
      'navigator.usb should not be a USB object');
}, 'Service workers should not have access to the WebUSB API.');

done();
back to top