mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 01:17:34 +00:00
LibWeb: Resolve effective overflow-x and overflow-y according to spec
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."
This commit is contained in:
parent
b6292a2d7d
commit
623ad94582
6 changed files with 74 additions and 0 deletions
9
Tests/LibWeb/Ref/reference/overflow-hidden-7-ref.html
Normal file
9
Tests/LibWeb/Ref/reference/overflow-hidden-7-ref.html
Normal file
|
@ -0,0 +1,9 @@
|
|||
<!DOCTYPE html>
|
||||
<style>
|
||||
.box {
|
||||
width: 200px;
|
||||
height: 200px;
|
||||
background-color: darkblue;
|
||||
}
|
||||
</style>
|
||||
<div class="box"></div>
|
Loading…
Add table
Add a link
Reference in a new issue