summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-grid/layout-algorithm/grid-find-fr-size-restart-algorithm.html
blob: fc2ebeb10308debd15f9b4dc05a683df42b725a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Grid Layout Test: Restart the algorithm to find the size of an 'fr'</title>
<link rel="author" title="Ethan Jimenez" href="mailto:ethavar@microsoft.com">
<link rel="help" href="https://drafts.csswg.org/css-grid-2/#algo-find-fr-size" title="12.7.1. Find the Size of an 'fr'">
<link rel="match" href="../../reference/ref-filled-green-100px-square.xht">
<meta name="assert" content="If the product of the hypothetical fr size and a flexible track’s flex factor is less than the track’s base size, restart this algorithm treating all such tracks as inflexible.">
<style>
.grid {
  width: 100px;
  height: 100px;
  background: red;

  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: repeat(2, 0fr 1fr);
}

div > div { background: green }
</style>
<p>Test passes if there is a filled green square and <strong>no red</strong>.</p>
<div class="grid">
  <div></div>
  <div style="width: 30px"></div>
  <div style="width: 50px"></div>
  <div></div>
</div>