Update web-platform-tests to revision 2660fc486f7027c913863d48a8843942f0c0365e

This commit is contained in:
WPT Sync Bot 2019-09-12 10:30:30 +00:00
parent 96de31b463
commit c413a1139e
455 changed files with 8535 additions and 2067 deletions

View file

@ -17,11 +17,11 @@
assert_equals(document.fullscreenElement, trans);
assert_equals(getComputedStyle(trans).color, "rgb(0, 128, 0)", "Transition is in progress - still green");
});
trans.addEventListener('click', e => {
trans.addEventListener('click', t.step_func(() => {
trans.style.color = "red";
trans.offsetTop;
trans.requestFullscreen();
}, {once: true});
}), {once: true});
test_driver.click(trans);
});
</script>