tor-browser

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

idlharness.worker.js (334B)


      1 importScripts("/resources/testharness.js");
      2 importScripts("/resources/WebIDLParser.js", "/resources/idlharness.js");
      3 
      4 'use strict';
      5 
      6 // https://w3c.github.io/FileAPI/
      7 
      8 idl_test(
      9  ['FileAPI'],
     10  ['dom', 'html', 'url'],
     11  idl_array => {
     12    idl_array.add_objects({
     13      FileReaderSync: ['new FileReaderSync()']
     14    });
     15  }
     16 );
     17 done();