block-in-inline-float-in-layer-001.html (518B)
1 <!DOCTYPE html> 2 <meta name="assert" content="Block-in-inline: float in an inline box that has a layer"> 3 <link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" /> 4 <link rel="match" href="block-in-inline-float-in-layer-001-ref.html"/> 5 <link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org" /> 6 <style> 7 .layer { 8 filter: blur(1px); 9 } 10 .float { 11 float: left; 12 } 13 </style> 14 <body> 15 <span class="layer"> 16 <div> 17 <div class="float">float</div> 18 </div> 19 </span> 20 </body>