summaryrefslogtreecommitdiffstats
path: root/layout/reftests/writing-mode/1124636-2-fieldset-min-height.html
blob: 72f139bb4a2049d7b87ed77da36c6e3b4cac522c (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>
<html>
  <head>
    <meta charset="utf-8">
    <title>Minimum height on fieldset</title>
    <style>
    div {
      writing-mode: vertical-lr;
    }
    fieldset {
      background:rgba(0,0,0,0.1);
      border-color:teal;
      border-width:2px;
      min-height:200px;
      max-height:400px;
    }
    </style>
  </head>
  <body>
    <div>
      <fieldset>
	<p>Lorem ipsum.</p>
      </fieldset>
    </div>
  </body>
</html>