Update web-platform-tests to revision 3564c21f260aeb6862ceaa56bee9c39b74db3440

This commit is contained in:
WPT Sync Bot 2019-10-03 10:23:35 +00:00
parent 78438113d4
commit 555167ffdb
141 changed files with 3095 additions and 1280 deletions

View file

@ -68,11 +68,12 @@ promise_test(async t => {
const iframe = document.createElement('iframe');
const eventWatcher = new EventWatcher(t, iframe, ['load']);
const event_promise = eventWatcher.wait_for('load');
document.body.appendChild(iframe);
t.add_cleanup(() => { document.body.removeChild(iframe); });
await eventWatcher.wait_for('load');
await event_promise;
const div = createDiv(t, iframe.contentDocument)
const effect = new KeyframeEffect(div, null, 100 * MS_PER_SEC);