summaryrefslogtreecommitdiffstats
path: root/layout/reftests/webkit-box/webkit-box-anon-flex-items-2-ref.html
blob: d220271d56f15dda82ca60749dc40c47f11ee944 (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
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
<head>
  <title>
    Reference Case
  </title>
  <style>
  .container {
    display: flex;
    justify-content: space-between;
    width: 300px;
    border: 1px solid black;
    font: 10px sans-serif;
  }
  span {
    background: lightgray;
  }
  </style>
</head>
<body>
<!-- We use an explicit div here, to match the anonymous div that the testcase
     is expected to generate around contiguous runs of inline content. -->
<div class="container">
  <div>
    raw text
    <span>start</span>
  </div>
  <div>BLOCK</div>
  <div>
    <span>end</span>
    raw text
  </div>
</div>
</body>
</html>