forked from mirrors/gecko-dev
Automatic update from web-platform-tests Update idlharness.js tests for new File System standard (#33447) This includes interfaces/ changes from @webref/idl: https://github.com/web-platform-tests/wpt/pull/33446 -- wpt-commits: 7d7911e885cf74f7a74b3782cbb60c16ff72ef31 wpt-pr: 33447
18 lines
364 B
JavaScript
18 lines
364 B
JavaScript
// META: script=/resources/WebIDLParser.js
|
|
// META: script=/resources/idlharness.js
|
|
// META: timeout=long
|
|
|
|
'use strict';
|
|
|
|
idl_test(
|
|
['file-system-access'],
|
|
['fs', 'permissions', 'html', 'dom'],
|
|
idl_array => {
|
|
if (self.GLOBAL.isWindow()) {
|
|
idl_array.add_objects({
|
|
Window: ['window'],
|
|
// TODO: DataTransferItem
|
|
});
|
|
}
|
|
}
|
|
);
|