summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/386266-1.html
blob: 60284433acb5d88ac5d7135a03ecd52ed466a5aa (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>

<style>
#outer { 
  -moz-column-count: 2;
}
#inner {
  border: 1px solid green;
}
</style>

<style id="s">
#inner { 
  float: right; 
  height: 1em; 
}
</style>

</head>

<body onload="document.getElementById('s').disabled = true;">

<div id="outer"><div id="inner"></div></div>

</body>
</html>