https://github.com/web-platform-tests/wpt
Raw File
Tip revision: cafaab17fb276177303ea7baec5b070f7989c21e authored by Anne van Kesteren on 20 March 2018, 14:55:59 UTC
Add HTMLOrSVGElement to HTML's IDL
Tip revision: cafaab1
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