mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
623ad94582
Implements following rule from CSS Overflow Module Level 3: "The visible/clip values of overflow compute to auto/hidden (respectively) if one of overflow-x or overflow-y is neither visible nor clip."
19 lines
521 B
HTML
19 lines
521 B
HTML
<!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>
|