mirror of
https://github.com/servo/servo.git
synced 2025-07-20 22:03:42 +01:00
16 lines
448 B
JavaScript
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');
|