chromium/third_party/blink/web_tests/fast/css-grid-layout/minmax-fixed-logical-width-only.html

<!DOCTYPE html>
<html>
<link href="resources/grid.css" rel="stylesheet">
<style>
.grid {
    width: 100px;
    height: 200px;
}

#grid1 {
    grid-template-columns: minmax(20px, 80px) 60px;
    grid-template-rows: 30px;
}

#grid2 {
    /* First minmax more constraining than available logical width. */
    grid-template-columns: minmax(50%, 60px) minmax(10px, 40%);
    grid-template-rows: 30px;
}

#grid3 {
    /* Overlapping range. */
    grid-template-columns: minmax(10px, 80px) minmax(20px, 50px);
    grid-template-rows: 30px;
}

#grid4 {
    grid-template-columns: minmax(20px, 80px) 160px;
    grid-template-rows: 30px;
}

#grid5 {
    /* 50% > 80px, 80px should be ignored. */
    grid-template-columns: minmax(50%, 80px) minmax(10px, 60%);
    grid-template-rows: 30px;
}

#grid6 {
    /* Overlapping range. */
    grid-template-columns: minmax(10px, 180px) minmax(30px, 150px);
    grid-template-rows: 30px;
}

.firstRowFirstColumn {
    width: 100%;
    height: 100%;
}

.firstRowSecondColumn {
    width: 100%;
    height: 100%;
}
</style>
<script src="../../resources/check-layout.js"></script>
<body onload="checkLayout('.grid')">

<p><a href="https://webkit.org/b/104700">Bug 104700<a>: [CSS Grid Layout] Implement grid items sizing for fixed minmax grid tracks</p>
<p>Checks that a grid element with fixed minmax properly compute the logical width in several writing-mode.</p>

<div class="grid" id="grid1" data-expected-width="100" data-expected-height="200">
    <div class="firstRowFirstColumn" data-expected-height="30" data-expected-width="40"></div>
    <div class="firstRowSecondColumn" data-expected-height="30" data-expected-width="60"></div>
</div>

<div class="grid" id="grid2" data-expected-width="100" data-expected-height="200">
    <div class="firstRowFirstColumn" data-expected-height="30" data-expected-width="60"></div>
    <div class="firstRowSecondColumn" data-expected-height="30" data-expected-width="40"></div>
</div>

<div class="grid" id="grid3" data-expected-width="100" data-expected-height="200">
    <div class="firstRowFirstColumn" data-expected-height="30" data-expected-width="50"></div>
    <div class="firstRowSecondColumn" data-expected-height="30" data-expected-width="50"></div>
</div>

<div class="grid verticalRL" id="grid4" data-expected-width="100" data-expected-height="200">
    <div class="firstRowFirstColumn" data-expected-height="40" data-expected-width="30"></div>
    <div class="firstRowSecondColumn" data-expected-height="160" data-expected-width="30"></div>
</div>

<div class="grid verticalLR" id="grid5" data-expected-width="100" data-expected-height="200">
    <div class="firstRowFirstColumn" data-expected-height="100" data-expected-width="30"></div>
    <div class="firstRowSecondColumn" data-expected-height="100" data-expected-width="30"></div>
</div>

</body>
</html>