mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-29 06:22:53 +00:00
22 lines
406 B
HTML
22 lines
406 B
HTML
<!DOCTYPE html>
|
|
<link rel="match" href="../expected/scrollable-overflow-viewport-bug.html">
|
|
<style>
|
|
#child {
|
|
position: absolute;
|
|
top: 150vh;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
|
|
#holder {
|
|
position: absolute;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
|
|
<div id="holder"></div>
|
|
<script>
|
|
const child = document.createElement("div");
|
|
child.id = "child";
|
|
holder.appendChild(child);
|
|
</script>
|