mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 14:20:14 +02:00
Automatic update from web-platform-testsMerge pull request #9892 from w3c/idl-in-interfaces Consolidate all IDL files into interfaces/ wpt-commits: 4a9668d4ff65e156d833f1ebc48b6ee7e6d46779 wpt-pr: 9892 wpt-commits: 4a9668d4ff65e156d833f1ebc48b6ee7e6d46779 wpt-pr: 9892 --HG-- rename : testing/web-platform/tests/FileAPI/idlharness.idl => testing/web-platform/tests/interfaces/FileAPI.idl rename : testing/web-platform/tests/IndexedDB/interfaces.idl => testing/web-platform/tests/interfaces/IndexedDB.idl rename : testing/web-platform/tests/background-fetch/interfaces.idl => testing/web-platform/tests/interfaces/background-fetch.idl rename : testing/web-platform/tests/cookie-store/cookie-store.idl => testing/web-platform/tests/interfaces/cookie-store.idl rename : testing/web-platform/tests/encrypted-media/EncryptedMediaExtensions.idl => testing/web-platform/tests/interfaces/encrypted-media.idl rename : testing/web-platform/tests/entries-api/interfaces.idl => testing/web-platform/tests/interfaces/entries-api.idl rename : testing/web-platform/tests/storage/interfaces.idl => testing/web-platform/tests/interfaces/storage.idl rename : testing/web-platform/tests/webauthn/interfaces.idl => testing/web-platform/tests/interfaces/webauthn.idl
54 lines
1.8 KiB
HTML
54 lines
1.8 KiB
HTML
<!DOCTYPE html>
|
|
<meta charset=utf-8>
|
|
<title>Entries API: IDL Tests</title>
|
|
<link rel=help href="https://wicg.github.io/entries-api/#idl-index">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script src="/resources/WebIDLParser.js"></script>
|
|
<script src="/resources/idlharness.js"></script>
|
|
<script src="support.js"></script>
|
|
<script>
|
|
'use strict';
|
|
|
|
entry_test((t, entry, item) => {
|
|
assert_true(entry.isDirectory);
|
|
Promise.all([
|
|
getEntriesAsPromise(entry),
|
|
fetch('/interfaces/entries-api.idl').then(r => r.text())
|
|
]).then(t.step_func(([entries, idls]) => {
|
|
window.samples = {
|
|
item: item,
|
|
dirEntry: entries.filter(entry => entry.isDirectory)[0],
|
|
fileEntry: entries.filter(entry => entry.isFile)[0],
|
|
fileSystem: entry.filesystem,
|
|
};
|
|
|
|
const idl_array = new IdlArray();
|
|
|
|
// https://w3c.github.io/FileAPI/#dfn-file
|
|
idl_array.add_untested_idls('[Exposed=(Window,Worker)] interface File {};');
|
|
|
|
// https://html.spec.whatwg.org/multipage/forms.html#htmlinputelement
|
|
idl_array.add_untested_idls('interface HTMLInputElement {};');
|
|
|
|
// https://html.spec.whatwg.org/multipage/interaction.html#datatransferitem
|
|
idl_array.add_untested_idls('interface DataTransferItem {};');
|
|
|
|
idl_array.add_idls(idls);
|
|
|
|
idl_array.add_objects({
|
|
File: ['new File([], "example.txt")'],
|
|
HTMLInputElement: ['document.createElement("input")'],
|
|
DataTransferItem: ['samples.item'],
|
|
FileSystemEntry: [],
|
|
FileSystemDirectoryEntry: ['samples.dirEntry'],
|
|
FileSystemDirectoryReader: ['samples.dirEntry.createReader()'],
|
|
FileSystemFileEntry: ['samples.fileEntry'],
|
|
FileSystem: ['samples.fileSystem'],
|
|
});
|
|
|
|
idl_array.test();
|
|
t.done();
|
|
}));
|
|
}, 'Entries API: IDL');
|
|
</script>
|