display-2-ref.html (755B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"/> 5 <title>display attribute VS legacy mode attribute (reference)</title> 6 </head> 7 <body> 8 <p>Test passes if you see four green squares, the last one 9 centered and the others left-aligned.</p> 10 <p> 11 <math> 12 <mspace width="100px" height="100px" style="background: green"></mspace> 13 </math> 14 </p> 15 <p> 16 <math> 17 <mspace width="100px" height="100px" style="background: green"></mspace> 18 </math> 19 </p> 20 <p> 21 <math display="inline"> 22 <mspace width="100px" height="100px" style="background: green"></mspace> 23 </math> 24 </p> 25 <p> 26 <math display="block"> 27 <mspace width="100px" height="100px" style="background: green"></mspace> 28 </math> 29 </p> 30 </body> 31 </html>