mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 04cd5eb8e5c47e4fe341f2fb541d39fa2346f464
This commit is contained in:
parent
0ab2c3f8a3
commit
1d0624b343
226 changed files with 4495 additions and 903 deletions
|
@ -0,0 +1,27 @@
|
|||
<!DOCTYPE html>
|
||||
<title>Transitions should not be stopped by going fullscreen</title>
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script src="/resources/testdriver.js"></script>
|
||||
<script src="/resources/testdriver-vendor.js"></script>
|
||||
<style>
|
||||
#trans {
|
||||
transition: color steps(1, end) 100s;
|
||||
color: green;
|
||||
}
|
||||
</style>
|
||||
<div id="trans">Should be green</div>
|
||||
<script>
|
||||
async_test(t => {
|
||||
document.onfullscreenchange = t.step_func_done(() => {
|
||||
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.style.color = "red";
|
||||
trans.offsetTop;
|
||||
trans.requestFullscreen();
|
||||
}, {once: true});
|
||||
test_driver.click(trans);
|
||||
});
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue