mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
15 lines
325 B
HTML
15 lines
325 B
HTML
<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> |