blob: e36de03d67c33695d814b0cc689b1899b9eace66 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body>
WebKit Bug 88022 - Cleanup empty anonymous block continuation.<br />
Test passes if you see orange and purple text should be on the same line.
<a id="target"><b style="color: orange">ONE</b><b id="two" style="color: purple">TWO</b></a>
<script>
target = document.getElementById("target");
two = document.getElementById("two");
target.offsetTop; // force a layout
two.style.display = "block";
target.offsetTop; // force a layout
two.style.display = "inline";
</script>
</body>
</html>