space-vertical-align.tentative.html (821B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>space and vertical-align</title> 6 <link rel="help" href="https://w3c.github.io/mathml-core/#space-mspace"> 7 <link rel="match" href="space-vertical-align.tentative-ref.html"/> 8 <meta name="assert" content="Verify that vertical-align property has no effect on mspace"> 9 </head> 10 <body> 11 <p>Test passes if you see a green square.</p> 12 <div style="position: relative;"> 13 <div style="position: absolute; top: 0px; left: 0px; 14 width: 200px; height: 200px;"> 15 <math style="position: absolute; top: 0px; left: 0px"> 16 <mspace width="50px" height="100px" style="background: green;vertical-align:50px"/> 17 <mspace width="50px" height="100px" style="background: green;vertical-align:50%"/> 18 </math> 19 </div> 20 </div> 21 </body> 22 </html>