mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-29 12:49:08 +00:00
23 lines
406 B
HTML
23 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>
|