summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/849407-1.html
blob: 81309873b0313f0f57e11c222146a4e0c520ab1c (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">
  <style>
    legend {
      display: flex;
      width: 200px;
      height: 100px;
      overflow: scroll;
      border: 2px dashed gray;
    }
    div.child {
      background: lightblue;
      height: 1000px;
    }
  </style>
</head>
<body>
  <fieldset>
    <legend>
      <div class="child">
        There should be scrollbars making this area scrollable.
      </div>
    </legend>
  </fieldset>
</body>
</html>