summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/430991.html
blob: 844e9c1a53ccd06bace8acd791844389ef57e1b5 (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
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">

function boom()
{
  var li = document.getElementById("li");
  li.removeChild(li.lastChild);
}

</script>
</head>

<body onload="boom();">

<ul id="ul">
<li id="li" style="column-count: -1; white-space: pre-wrap;"><span>A</span><span>B</span><span style="float: right;"></span>

</li>
</ul>

</body>
</html>