summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/FileAPI/idlharness.worker.js
blob: 002aaed40a562e94fbe4f733d026b0e0f0842591 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
importScripts("/resources/testharness.js");
importScripts("/resources/WebIDLParser.js", "/resources/idlharness.js");

'use strict';

// https://w3c.github.io/FileAPI/

idl_test(
  ['FileAPI'],
  ['dom', 'html', 'url'],
  idl_array => {
    idl_array.add_objects({
      FileReaderSync: ['new FileReaderSync()']
    });
  }
);
done();