summaryrefslogtreecommitdiffstats
path: root/layout/forms/crashtests/367587-1.html
blob: 9bffe569ed2cea931cd57366d44afc7f05e31f68 (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
36
37
<html class="reftest-wait">
<head>

<style>

#opt1 { display: table-footer-group; }
#opt1 { visibility: collapse; }
#opt1 { overflow: hidden scroll; }

#opt2 { display: table-cell; }
#opt2 { clear: left; }

select { width: 1px; }

</style>

<script>

function boom()
{
  document.getElementById("opt2").style.clear = "none";
  document.documentElement.removeAttribute("class");
}

</script>

</head>

<body onload="setTimeout(boom, 30);">

<select multiple>
<option id="opt1">A</option>
<option id="opt2">B</option>
</select>

</body>
</html>