haikuwebkit/LayoutTests/fast/block/inside-inlines/basic-float-intrusion-expec...

15 lines
327 B
HTML

<!doctype html>
<head>
<style>
.box { border:1px solid black; padding:3px; margin:3px }
.nowrap { white-space: nowrap; }
.float { float: left; }
.box div { height:40px; }
.float { width:100px; height:100px; background-color:cyan }
</style>
<body>
<div class="float"></div>
<div class="box"><div>Avoid the float!</div></div>