summaryrefslogtreecommitdiffstats
path: root/layout/reftests/bugs/393649-1.html
blob: 967a9c6510baa17944f2f6fac727aa89b3bf4731 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function boom()
{
  document.getElementById("span").appendChild(document.createTextNode("XXX"));
  find("XXX");
}
</script>
</head>

<body onload="boom();" style="width: 15em;">
<div style="column-count: 2;">
<span id="span"><div>yo yo yo yo yo yo yo yo</div></span>
</div>

</body>
</html>