summaryrefslogtreecommitdiffstats
path: root/layout/reftests/forms/fieldset/fieldset-grid-001-ref.html
blob: f99de2252211859399ddb132c1775a6e25a6db60 (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
<!DOCTYPE HTML>
<html>
<body>
<fieldset style="overflow:hidden; width:200px; height:200px;">
  <legend>Legend</legend>
<div style="display:grid; grid-template-columns: repeat(4,50px); grid-auto-rows: 20px;">
  <p>X
  <p>X
  <p>X
  <p>X
  <p>X
  <p>X
  <p>X
  <p>X
  <p>X
  <p>X
  <p>X
</div>
</fieldset>
<fieldset>
  <legend>Legend</legend>
<div style="display:grid; grid-auto-columns: 50px; grid-auto-rows: 20px;">
  <p>X
  <p>X
  <p>X
  <p>X
  <p>X
  <p>X
  <p>X
</div>
</fieldset>
</body>
</html>