blob: fcf3e65047d983a55549e25ec81486bffd1b43c9 [file] [log] [blame]
<style>
.box {
width: 60px;
height: 30px;
float: left;
background-color: blue;
}
.box.right {
float: right;
background-color: green;
}
</style>
<div style="width: 100px">
<div class="box"></div>
<div class="right box"></div>
<div>PASS if no assert in debug</div>
</div>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>