https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 224b3098a86c3928063db1d85c82978363ffd90b authored by Kent Tamura on 02 April 2018, 08:48:54 UTC
custom-elements: Add tests for callback timing with HTML parser.
Tip revision: 224b309
idlharness.worker.js
importScripts("/resources/testharness.js");
importScripts("/resources/WebIDLParser.js", "/resources/idlharness.js");

var request = new XMLHttpRequest();
request.open("GET", "/interfaces/FileAPI.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("[Exposed=(Window,Worker)] interface ArrayBuffer {};");
    idl_array.add_untested_idls("interface URL {};");
    idl_array.add_untested_idls("[Exposed=(Window,Worker)] interface EventTarget {};");
    idl_array.add_untested_idls("[Exposed=(Window,Worker)] interface Event {};");
    idl_array.add_untested_idls("[TreatNonCallableAsNull] callback EventHandlerNonNull = any (Event event);");
    idl_array.add_untested_idls("typedef EventHandlerNonNull? EventHandler;");

    idl_array.add_idls(idls);

    idl_array.add_objects({
        Blob: ['new Blob(["TEST"])'],
        File: ['new File(["myFileBits"], "myFileName")'],
        FileReader: ['new FileReader()'],
        FileReaderSync: ['new FileReaderSync()']
    });

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