mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-07 18:17:23 +00:00
LibWeb: Fallback to auto when aspect ratio is degenerate as per spec
When aspect-ratio is degenerate (e.g. 0/1 or 1/0) we should fallback to the same behaviour as `aspect-ratio: auto` according to spec This commit explicitly handles this case and fixes five WPT test in css/css-sizing/aspect-ratio (zero-or-infinity-[006-010])
This commit is contained in:
parent
20376adbc3
commit
c6f77f4818
Notes:
github-actions[bot]
2024-10-27 10:12:32 +00:00
Author: https://github.com/kkckkc 🔰
Commit: c6f77f4818
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1945
3 changed files with 22 additions and 1 deletions
|
@ -0,0 +1,6 @@
|
|||
<!doctype html><style>
|
||||
img {
|
||||
width: 200px;
|
||||
aspect-ratio: 0/1;
|
||||
}
|
||||
</style><img src="120.png"/>
|
Loading…
Add table
Add a link
Reference in a new issue