mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
22 lines
406 B
HTML
22 lines
406 B
HTML
<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>
|