direction-overall-ref.html (1013B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"/> 5 <title>Verify dir attribute on various containers</title> 6 </head> 7 <body> 8 <p> 9 math: 10 <math> 11 <mspace width="25px" height="25px" mathbackground="blue"/> 12 <mspace width="25px" height="25px" mathbackground="green"/> 13 <mspace width="25px" height="25px" mathbackground="red"/> 14 </math> 15 </p> 16 17 <p> 18 mrow: 19 <math> 20 <mrow> 21 <mspace width="25px" height="25px" mathbackground="blue"/> 22 <mspace width="25px" height="25px" mathbackground="green"/> 23 <mspace width="25px" height="25px" mathbackground="red"/> 24 </mrow> 25 </math> 26 </p> 27 28 <p> 29 mstyle: 30 <math> 31 <mstyle> 32 <mspace width="25px" height="25px" mathbackground="blue"/> 33 <mspace width="25px" height="25px" mathbackground="green"/> 34 <mspace width="25px" height="25px" mathbackground="red"/> 35 </mstyle> 36 </math> 37 </p> 38 39 </body> 40 </html>