floating-inside-mathml-with-block-display-ref.html (508B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>floating inside display: block MathML (reference)</title> 6 </head> 7 <body> 8 <p>Test passes if you see a blue square on the left and a smaller magenta square on the right.</p> 9 <div> 10 <div style="display: block"> 11 <div style="display: inline-block; width: 50px; height: 50px; background: magenta"></div><div style="float: left; display: inline-block; width: 100px; height: 100px; background: blue"></div> 12 </div> 13 </div> 14 </body> 15 </html>