1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-09 17:44:56 +09:00
ladybird/Tests/LibWeb/Ref/expected/clip-path-scrolling.html

18 lines
265 B
HTML

<!DOCTYPE html>
<style>
body {
height: 200vh;
position: relative;
}
div {
position: absolute;
top: 100px;
background-color: green;
width: 100px;
height: 100px;
}
</style>
<div></div>
<script>
window.scrollTo(0, 100);
</script>