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