Update web-platform-tests to revision 388763aee0d14246a2f8ebb24176424cc1983820

This commit is contained in:
WPT Sync Bot 2020-06-24 08:20:43 +00:00
parent 0838d782c6
commit b24cb329fb
202 changed files with 11044 additions and 1361 deletions

View file

@ -0,0 +1,12 @@
function call_later(f) {
const builder = new WasmModuleBuilder();
const functionIndex = builder.addImport("module", "imported", kSig_v_v);
builder.addStart(functionIndex);
const buffer = builder.toBuffer();
WebAssembly.instantiate(buffer, {
"module": {
"imported": f,
}
});
}