blob: eb0f76dc01c79677776185bdc38ad8852dc72d34 [file] [edit]
<style>
#changeThis {
position:absolute;
width: 50px;
height: 50px;
background-color: blue;
display: none;
}
.container {
border-left: 50px solid green;
height: 50px;
color: transparent;
}
</style>
<div class=container><span><div id=changeThis></div>PASS if blue and green boxes are next to each other<div></div></span></div>
<script>
document.body.offsetHeight;
changeThis.style.display = "inline";
</script>