ladybird/Tests/LibWeb/Text/input/resolve-css-overflow-effective-value.html

20 lines
521 B
HTML
Raw Normal View History

<!DOCTYPE html>
<style>
.box {
overflow-y: hidden;
overflow-x: visible;
width: 200px;
height: 200px;
background-color: darkblue;
}
</style>
<body><div class="box"></div></body>
<script src="include.js"></script>
<script>
test(() => {
const box = window.getComputedStyle(document.querySelector(".box"));
println(`overflow-x: ${box.getPropertyValue("overflow-x")}`);
println(`overflow-y: ${box.getPropertyValue("overflow-y")}`);
});
</script>