blob: d51d56a7a9cc5911a0239acbcb7b1b59e1f57bdf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!DOCTYPE html>
<p>crbug.com/568387: Should not ASSERT and should leave an anonymous block around the two inline-blocks.</p>
<div style="display:table-row-group;">
<div></div>
<div id="splitter" style="display:none;"></div>
<div style="display:inline-block; width:75px; height:50%; background:blue;"></div>
<div style="display:inline-block; width:75px; height:50%; background:blue;"></div>
<div></div>
</div>
<script>
document.body.offsetTop;
document.getElementById("splitter").style.display = "table-row";
</script>
|