blob: bf5d14dca436780fb2b69fe33f29f7100f399e50 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<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>
|