blob: 09ec8ef50857d3ade91b24eddc8addf033113ca1 [file] [log] [blame]
<!DOCTYPE HTML>
<head>
<title>This tests that floating box is properly positioned after removing sibling block content.</title>
<style>
.floating {
float: left;
}
</style>
</head>
<body>
<span>wrap</span><div id=removeThis></div><div class="floating">should not&nbsp</div>
<script>
if (window.testRunner)
testRunner.waitUntilDone();
setTimeout(function() {
var ele = document.getElementById("removeThis");
ele.parentNode.removeChild(ele);
if (window.testRunner)
testRunner.notifyDone();
}, 0);
</script>
</body>
</html>