1
0
Fork 0
firefox/layout/reftests/async-scrolling/perspective-scrolling-1-ref.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
379 B
HTML

<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<title>Perspective scrolling</title>
<style>
html {
height: 100%;
overflow: hidden;
}
body {
height: 100%;
perspective: 1px;
overflow: auto;
margin: 0;
}
div {
height: 4000px;
margin: 200px 100px;
border: 10px solid black;
}
</style>
<div></div>
<script>
document.body.scrollTop = 100;
</script>