https://github.com/web-platform-tests/wpt
Raw File
Tip revision: cc17d0d2c326ae76ee0eedbe70dd1840cd96a1ca authored by Jake Archibald on 22 May 2018, 13:00:43 UTC
Returning a cached ranged response should now give a network error
Tip revision: cc17d0d
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