Update web-platform-tests to revision 2b4f117a8fc636fc316b3864763db6b28e8a42bc

This commit is contained in:
WPT Sync Bot 2020-12-10 08:21:05 +00:00
parent d7e7e43a80
commit 7ae94b8030
116 changed files with 3431 additions and 487 deletions

View file

@ -1,4 +1,4 @@
importScripts("/resources/testharness.js");
importScripts("module/evaluation-order-setup.mjs");
importScripts("module/evaluation-order-1-worker.mjs");
importScripts("evaluation-order-1-worker.js");
importScripts("module/evaluation-order-1.mjs");

View file

@ -0,0 +1,9 @@
globalThis.expectedLog = [
"step-1-1", "step-1-2",
"global-error", "error",
"microtask",
];
globalThis.test_load.step_timeout(() => globalThis.testDone(), 0);
done();

View file

@ -1,7 +1,7 @@
globalThis.expectedLog = [
"step-1-1", "step-1-2",
"global-error", "error",
"microtask",
"global-error", "error",
];
globalThis.test_load.step_timeout(() => globalThis.testDone(), 0);

View file

@ -9,8 +9,8 @@
window.addEventListener("load", event => globalThis.testDone());
globalThis.expectedLog = [
"step-1-1", "step-1-2",
"global-error", "error",
"microtask",
"global-error", "error",
"script-load",
"global-load"
];

View file

@ -1,7 +1,7 @@
globalThis.expectedLog = [
"step-2.2-1", "step-2.2-2",
"global-error", "error",
"microtask-2.2",
"global-error", "error",
];
done();

View file

@ -7,8 +7,8 @@
import "./evaluation-order-setup.mjs";
globalThis.expectedLog = [
"step-2.2-1", "step-2.2-2",
"global-error", "error",
"microtask-2.2",
"global-error", "error",
"script-load",
"global-load",
];