https://github.com/web-platform-tests/wpt
Raw File
Tip revision: a63ba842d508752da2f65ea507cd1d8baff7840e authored by Stephen McGruer on 10 April 2018, 17:53:52 UTC
Web Animations: Fix bugs in procedure to process a keyframes argument
Tip revision: a63ba84
idlharness.https.worker.js
importScripts("/resources/testharness.js");
importScripts("/resources/WebIDLParser.js", "/resources/idlharness.js");

var request = new XMLHttpRequest();
request.open("GET", "../interfaces/WebCryptoAPI.idl");
request.send();
request.onload = function() {
    var idl_array = new IdlArray();
    var idls = request.responseText;

    idl_array.add_untested_idls("[Global] interface Window { };");

    idl_array.add_untested_idls("interface ArrayBuffer {};");
    idl_array.add_untested_idls("interface ArrayBufferView {};");

    idl_array.add_idls(idls);

    idl_array.add_objects({"Crypto":["crypto"], "SubtleCrypto":["crypto.subtle"]});

    idl_array.test();
    done();
};
back to top