haikuwebkit/LayoutTests/fast/block/margin-collapse/self-collapsing-block-with-...

11 lines
436 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<body>
<p>The blue box should be stacked on top the black box.</p>
<!-- https://bugs.webkit.org/show_bug.cgi?id=103116 -->
<div style="height: 20px; width:20px; float:left; background: blue;"></div>
<div style="margin-top:10px; clear:both;">
<div style="height: 20px; width:20px; float:left; background: black;"></div>
</div>
</body>