summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/contain-size-flexbox-002.html
blob: 531af691afe80364c43e0055ef90306ceeaca00f (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
<!DOCTYPE html>
<title>Tests that scrollbars are handled correctly in a flex item with contains:size</title>
<link rel="author" title="Google LLC" href="https://www.google.com">
<link rel="help" href="https://www.w3.org/TR/css-contain-1/#containment-size">
<link rel="match" href="reference/contain-size-flexbox-002-ref.html">

<style>
div > div {
  vertical-align: top;
  display: inline-block;
  contain: size;
  overflow: scroll;
  border: 1px solid;
}
</style>

<p>Test passes if the two lines below look the same.</p>

<div style="display: flex; line-height: 1.0;">
  <div></div>
</div>

<div style="line-height: 1.0;">
  <div></div>
</div>