fune/testing/web-platform/tests/FileAPI/idlharness.worker.js
Luca Casonato afd2e9ce9c Bug 1719151 [wpt PR 29576] - split FileAPI/idlharness tests into any.js, a=testonly
Automatic update from web-platform-tests
split FileAPI/idlharness tests into any.js (#29576)

* split FileAPI/idlharness tests into any.js
--

wpt-commits: 3572a3815407c62261f1a28dc3b16ff54c0cb865
wpt-pr: 29576
2021-07-31 09:22:01 +00:00

17 lines
334 B
JavaScript

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();