summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-contain/contain-size-inline-flex-001-ref.html
blob: 93a263b5b2ffc131bdfe4989c3d90c312cadf6e4 (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
28
<!DOCTYPE HTML>
<html>
<head>
  <meta charset="utf-8">
  <title>CSS Reftest Reference</title>
  <link rel="author" title="Morgan Rae Reschenberg" href="mailto:mreschenberg@berkeley.edu">
  <style>
  .basic {
    border: 1em solid green;
    display: inline-flex;
  }
  .width-ref {
    width: 50px;
  }
  .innerContents {
    color: transparent;
    width: 0;
    height: 0;
  }
  </style>
</head>
<body>
  aa<div class="basic"><div class="innerContents">i</div></div>bb
  <br>

  aa<div class="basic width-ref"><div class="innerContents">i</div></div>bb
</body>
</html>