mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 05:08:36 +02:00
Automatic update from web-platform-testsRemove the idl_test test_name argument (always 'idl_test setup') (#12406) Completes what https://github.com/web-platform-tests/wpt/pull/12276 started. -- wpt-commits: a570eb13b74de9de57230c95e3a302699ce0e7c4 wpt-pr: 12406
21 lines
554 B
JavaScript
21 lines
554 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_untested_idls("[Exposed=(Window,Worker)] interface ArrayBuffer {};");
|
|
idl_array.add_objects({
|
|
Blob: ['new Blob(["TEST"])'],
|
|
File: ['new File(["myFileBits"], "myFileName")'],
|
|
FileReader: ['new FileReader()'],
|
|
FileReaderSync: ['new FileReaderSync()']
|
|
});
|
|
}
|
|
);
|
|
done();
|