summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/393956-1.html
blob: b9d79489f653f634713ca0c7a68a777fb0b3730c (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
<html>
<head>
<style>
body {
  column-count: 2;
}
#x {
  height: 20px;
}
#y {
  height: 80px;
}
</style>

<script>
function boom()
{
  document.getElementById("x").style.content = "'0'";
}
</script>
</head>

<body onload="boom();"><div id="x"><div id="y"></div></div></body>

</html>