mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 03:57:44 +00:00
LibWeb: Treat unresolvable percentages as auto to resolve sizes in GFC
Fixes the bug that currently we always consider tracks with percentage size as ones with "fixed" length even when available size is not definite. With this change tracks with percentage size when available size is not definite will be considered as "intrinsic" sized.
This commit is contained in:
parent
30feb95d53
commit
537256fae2
6 changed files with 73 additions and 58 deletions
|
@ -0,0 +1,11 @@
|
|||
<style>
|
||||
.ipc-page-grid {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.ipc-sub-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 100%;
|
||||
}
|
||||
</style>
|
||||
<div class="ipc-page-grid"><div class="ipc-sub-grid"><div>hello</div></div></div>
|
Loading…
Add table
Add a link
Reference in a new issue