mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-27 18:17:22 +02:00
Tests/LibWeb: Import Fullscreen WPT tests
This commit is contained in:
Notes:
github-actions[bot]
2026-02-23 18:45:39 +00:00
Author: https://github.com/Lubrsi Commit: https://github.com/LadybirdBrowser/ladybird/commit/8017f8a7ed3 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/7649 Reviewed-by: https://github.com/shannonbooth ✅ Reviewed-by: https://github.com/tcl3
@@ -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', t.step_func(() => {
|
||||
trans.style.color = "red";
|
||||
trans.offsetTop;
|
||||
trans.requestFullscreen();
|
||||
}), {once: true});
|
||||
test_driver.click(trans);
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user