summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/426040-1.html
blob: e8a4ea4e5ef43cbfbcd3709c5a5c226bd30440bf (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 type="text/css">

div { height: 1px; }

</style>

<script type="text/javascript">

function boom()
{
  var a = document.getElementById("a"); 
  a.firstChild.remove();
  document.documentElement.style.outline = "none";
}

</script>
</head>

<body onload="boom();">

<div style="column-count: 2;" id="a"><div><div style="float: right;"><div></div><span><div></div></span></div></div></div>

</body>

</html>