Update web-platform-tests to revision de3ae39cb59880a8245431e7f09817a2a4dad1a3

This commit is contained in:
WPT Sync Bot 2018-06-15 21:19:30 -04:00
parent 0c5b020163
commit b322aa3943
131 changed files with 2717 additions and 600 deletions

View file

@ -4,11 +4,12 @@
promise_test(async() => {
const text = await (await fetch("/interfaces/fetch.idl")).text();
const referrer_policy = await (await fetch("/interfaces/webappsec-referrer-policy.idl")).text();
const idl_array = new IdlArray();
idl_array.add_idls(text);
idl_array.add_untested_idls("[Exposed=(Window,Worker)] interface AbortSignal {};");
idl_array.add_untested_idls("[Exposed=(Window,Worker)] interface ReadableStream {};");
idl_array.add_untested_idls("enum ReferrerPolicy {};");
idl_array.add_dependency_idls(referrer_policy);
idl_array.add_objects({
Headers: ["new Headers()"],
Request: ["new Request('about:blank')"],