Update web-platform-tests to revision 4cec5596c806088cd8f1781bdaab1d10abb72394

This commit is contained in:
WPT Sync Bot 2020-03-11 08:18:58 +00:00
parent 58f3766c5b
commit 57fbf23022
95 changed files with 1292 additions and 700 deletions

View file

@ -20,8 +20,8 @@ directory_test(async (t, root) => {
});
await timeout;
const writer = await handle.createWriter({keepExistingData: false});
await writer.write(0, new Blob(['foo']));
const writer = await handle.createWritable({keepExistingData: false});
await writer.write(new Blob(['foo']));
await writer.close();
file = await handle.getFile();