float-in-inline-anonymous-block-with-overflow-hidden.html (701B)
1 <!DOCTYPE html> 2 <title>CSS Test: A float wrapped in an anonymous block should be visible within a container with overflow: hidden.</title> 3 <link rel="author" href="mailto:obrufau@igalia.com" title="Oriol Brufau"> 4 <link rel="match" href="../../reference/ref-filled-green-100px-square.xht"> 5 <link rel="help" href="https://www.w3.org/TR/CSS22/visuren.html#anonymous-block-level" /> 6 <p>Test passes if there is a filled green square and <strong>no red</strong>.</p> 7 <div style="overflow: hidden; width: 100px; height: 100px; background: red"> 8 <div style="height: 50px; background: green"></div> 9 <span> 10 <div style="float: left; width: 100px; height: 50px; background: green"></div> 11 </span> 12 </div>