1
0
Fork 0
firefox/testing/web-platform/tests/fullscreen/rendering/fullscreen-root-block-scroll.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

34 lines
1,008 B
HTML

<!DOCTYPE html>
<style>
body {
height: 10000px;
background: grey;
}
</style>
<title>fullscreen root block scrolling</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>
<script src="../trusted-click.js"></script>
<body>
<div>
This page tests that entering fullscreen doesn't adjust the scroll offset
</div>
<script>
promise_test(async (t) => {
t.add_cleanup(() => {
if (document.fullscreenElement) {
return document.exitFullscreen();
}
});
await trusted_click();
document.scrollingElement.scrollTop = 300;
await document.documentElement.requestFullscreen();
await fullScreenChange();
assert_equals(document.fullscreenElement, document.documentElement);
assert_not_equals(document.scrollingElement.scrollTop, 0);
document.scrollingElement.scrollTop = 0;
});
</script>