legacy-scriptminsize-attribute-ref.html (605B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>legacy scriptminsize attribute (reference)</title> 6 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 7 <style> 8 math { 9 /* Ahem font does not have a MATH table so the font-size scale factor 10 is always 0.71^{computed - inherited math script level} */ 11 font: 100px/1 Ahem; 12 } 13 </style> 14 </head> 15 <body> 16 <p>Test passes if you see a square of size 71px.</p> 17 <div> 18 <math> 19 <mstyle> 20 <mstyle scriptlevel="1"> 21 <mn>X</mn> 22 </mstyle> 23 </mstyle> 24 </math> 25 </div> 26 </body> 27 </html>