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