direction-006.html (2013B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"/> 5 <title>RTL mtable and mtable with frame</title> 6 <link rel="help" href="https://w3c.github.io/mathml-core/#attributes-common-to-html-and-mathml-elements"> 7 <link rel="help" href="https://w3c.github.io/mathml-core/#css-styling"> 8 <link rel="help" href="https://w3c.github.io/mathml-core/#tabular-math"> 9 <meta name="assert" content="Verify RTL math table renders the same as the column mirrored."> 10 <link rel="match" href="direction-006-ref.html"> 11 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 12 <style> 13 math, math * { 14 font: 25px Ahem; 15 } 16 </style> 17 </head> 18 <body> 19 20 <p> 21 <math dir="rtl"> 22 <mtable> 23 <mtr> 24 <mtd> 25 <mtext>X</mtext> 26 </mtd> 27 <mtd> 28 <mtext>p</mtext> 29 </mtd> 30 <mtd> 31 <mtext>É</mtext> 32 </mtd> 33 </mtr> 34 <mtr> 35 <mtd> 36 <mtext>Xp</mtext> 37 </mtd> 38 <mtd> 39 <mtext>XÉ</mtext> 40 </mtd> 41 <mtd> 42 <mtext>pÉ</mtext> 43 </mtd> 44 </mtr> 45 </mtable> 46 </math> 47 </p> 48 49 <p> 50 <math dir="rtl"> 51 <mtable frame="solid"> 52 <mtr> 53 <mtd> 54 <mtext>X</mtext> 55 </mtd> 56 <mtd> 57 <mtext>p</mtext> 58 </mtd> 59 <mtd> 60 <mtext>É</mtext> 61 </mtd> 62 </mtr> 63 <mtr> 64 <mtd> 65 <mtext>Xp</mtext> 66 </mtd> 67 <mtd> 68 <mtext>XÉ</mtext> 69 </mtd> 70 <mtd> 71 <mtext>pÉ</mtext> 72 </mtd> 73 </mtr> 74 </mtable> 75 </math> 76 </p> 77 78 <script src="/mathml/support/feature-detection.js"></script> 79 <script>MathMLFeatureDetection.ensure_for_match_reftest("has_dir");</script> 80 81 </body> 82 </html>