Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-gaps/grid/fragmentation/grid-gap-decorations-fragmentation-019-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>
Avoid crash when we have collapsed tracks due to auto-fit.
</title>
<link rel="author" title="Sam Davis Omekara Jr." href="mailto:samomekarajr@microsoft.com">
<style>
.multi-col {
columns: 3;
column-fill: auto;
height: 100px;
}
.grid-container {
display: grid;
height: 200px;
grid-template-rows: repeat(auto-fit, 20px);
align-content: space-evenly;
}
</style>
<div class="multi-col">
<div class="grid-container">
<div style="width: 10px; height: 15px; grid-row: 3;"> </div>
</div>
</div>