Branch: refs/heads/main
Home: https://github.com/WebKit/WebKit
Commit: 7a83e0e658f56371d3500bf3290d9b024b03c7b2
https://github.com/WebKit/WebKit/commit/7a83e0e658f56371d3500bf3290d9b024b03c7b2
Author: Sammy Gill <[email protected]>
Date: 2026-02-12 (Thu, 12 Feb 2026)
Changed paths:
M Source/WebCore/layout/integration/grid/LayoutIntegrationGridCoverage.cpp
Log Message:
-----------
[GFC][Integration] Allow min-content as the min and max track sizing functions
https://bugs.webkit.org/show_bug.cgi?id=307626
rdar://165062283
Reviewed by Vitor Roriz.
Now that we have support for min-content as the track sizing function we
can relax this restriction a bit. We start this by allowing as a valid
track sizing function for the columns.
This allow content such as this to run through GFC:
<div style="display: grid; width: 100px; height: 100px; grid-template-columns:
min-content min-content; grid-template-rows: 20px; min-width: 0; min-height: 0;
outline: 1px solid green;">
<div style="outline: 1px solid red; grid-column: 1/2; grid-row: 1/2;
min-width: 0; min-height: 0;">x x x x</div>
<div style="outline: 1px solid red; grid-column: 2/3; grid-row: 1/2;
min-width: 0; min-height: 0;">xxxxxxxxx</div>
</div>
Canonical link: https://commits.webkit.org/307388@main
To unsubscribe from these emails, change your notification settings at
https://github.com/WebKit/WebKit/settings/notifications