mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-30 06:52:52 +00:00
20 lines
386 B
HTML
20 lines
386 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../expected/clip-path-scrolling.html" />
|
|
<style>
|
|
body {
|
|
height: 200vh;
|
|
position: relative;
|
|
}
|
|
div {
|
|
position: absolute;
|
|
top: 100px;
|
|
background-color: green;
|
|
width: 100px;
|
|
height: 100px;
|
|
clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
|
|
}
|
|
</style>
|
|
<div></div>
|
|
<script>
|
|
window.scrollTo(0, 100);
|
|
</script>
|