https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 6f869cd68557949f12ca6b640ddbd8c505a4decb authored by L. David Baron on 09 April 2018, 04:44:44 UTC
Sync Mozilla tests as of https://hg.mozilla.org/mozilla-central/rev/b4bc6b2401738b78fd47127a4c716bb9178e1a09 .
Tip revision: 6f869cd
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