summaryrefslogtreecommitdiffstats
path: root/layout/generic/crashtests/1145931.html
blob: b1607bf5ccf83b1a80eef9fb190428b83079e69a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<html><head>
<meta charset="UTF-8">
<style>
body { column-count: 2; }
div::after { content: "A"; }
</style>

<script>
function boom() {
    x.style.display = "contents";
}
</script>
</head>
<body onload="boom();"><div></div><div><div id="x"></div></div></body>
</html>