summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-flexbox/synthesize-vrl-baseline.html
blob: 1e753da0a2c1349d06608d5d84bfcb3e91083330 (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
<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-align-3/#generate-baselines">
<link rel="help" href="https://www.w3.org/TR/css-inline-3/#valdef-dominant-baseline-auto">
<link rel="match" href="../reference/ref-filled-green-100px-square-only.html">
<style>
#inline-block {
  display: inline-block;
  width: 100px;
  height: 50px;
  background: green;
}

#inline-flex {
  display: inline-flex;
}

#inline-flex > div {
  width: 100px;
  height: 50px;
  background: green;
}
</style>
<p>Test passes if there is a filled green square.</p>
<div style="width: 100px; height: 100px; line-height: 0; writing-mode: vertical-rl; background: red;">
  <span id="inline-block"></span><span id="inline-flex"><div></div></span>
</div>