summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/538267-1.html
blob: 2bf73d197198fc497026248e16a33d60fb9907c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html>
<head>
<style>
div:first-letter { float: left; } 
div { column-count: 2; width: 0; }
</style>
<script>
function boom()
{
  var v = document.getElementById("v");
  v.firstChild.remove();
}
</script>
</head>
<body onload="boom();">
<div id="v">a b<span>c</span></div>
</body>
</html>