tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

usb.serviceworker.js (247B)


      1 'use strict';
      2 importScripts('/resources/testharness.js');
      3 
      4 test(() => {
      5  assert_equals(typeof navigator.usb, 'undefined',
      6      'navigator.usb should not be a USB object');
      7 }, 'Service workers should not have access to the WebUSB API.');
      8 
      9 done();