servo/tests/wpt/web-platform-tests/WebCryptoAPI/idlharness.https.any.js

16 lines
448 B
JavaScript

// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// https://w3c.github.io/webcrypto/Overview.html
promise_test(async () => {
const idl = await fetch(`/interfaces/WebCryptoAPI.idl`).then(r => r.text());
const idl_array = new IdlArray();
idl_array.add_idls(idl);
idl_array.add_objects({
Crypto: ['crypto'],
SubtleCrypto: ['crypto.subtle']
});
idl_array.test();
}, 'WebCryptoAPI interfaces');