tenfourfox/layout/tables/crashtests/451170.html

22 lines
406 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<html>
<head>
<script>
function doe() {
document.getElementById('a').style.display = 'table-column-group';
document.body.offsetHeight;
}
</script>
<style>
div::before { content:"b";}
div::after { content:"a";}
</style>
</head>
<body onload="document.body.offsetHeight; setTimeout(doe,0);">
<div style="display: table;">
<span id="a" style="display: table-header-group; "></span>
</div>
</body>
</html>