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,28 @@
|
||||
<!DOCTYPE html>
|
||||
<title>Invalidate :fullscreen based style</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>
|
||||
#pass {
|
||||
color: red;
|
||||
}
|
||||
:root:fullscreen #pass {
|
||||
color: green;
|
||||
}
|
||||
</style>
|
||||
<div id="pass">Should be green</div>
|
||||
<script>
|
||||
async_test(t => {
|
||||
document.onfullscreenchange = t.step_func_done(() => {
|
||||
assert_equals(document.fullscreenElement, document.documentElement);
|
||||
assert_equals(getComputedStyle(pass).color, "rgb(0, 128, 0)", "Green when :root is fullscreened.");
|
||||
});
|
||||
document.documentElement.addEventListener('click', t.step_func(() => {
|
||||
document.documentElement.requestFullscreen();
|
||||
}), {once: true});
|
||||
assert_equals(getComputedStyle(pass).color, "rgb(255, 0, 0)", "Initially red.");
|
||||
test_driver.click(document.documentElement);
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user