summaryrefslogtreecommitdiffstats
path: root/layout/base/crashtests/749816-1.html
blob: 125553886e6b9ef39f6577e350d6d6a7c84ee2bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<html>
<head>
<title>crash in epoll_wait after changing display: table-column style to display:none on body</title>
<script>
function doe() {
document.body.style.display = 'none';
}
setTimeout(doe, 1000);
</script>
</head>

<body style="display: table-column;">
This page should not crash Fennec
</body>
</html>