displaystyle-012.html (1537B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <title>displaystyle</title> 5 <meta charset="utf-8"> 6 <link rel="help" href="https://w3c.github.io/mathml-core/#the-displaystyle-and-scriptlevel-attributes"> 7 <link rel="help" href="https://w3c.github.io/mathml-core/#style-change-mstyle"> 8 <link rel="help" href="https://w3c.github.io/mathml-core/#underscripts-and-overscripts-munder-mover-munderover"> 9 <link rel="help" href="https://w3c.github.io/mathml-core/#operator-fence-separator-or-accent-mo"> 10 <link rel="match" href="displaystyle-012-ref.html"/> 11 <meta name="assert" content="Test the effect on displaystyle on munder, mover and munderover"> 12 <link rel="stylesheet" href="/fonts/ahem.css"> 13 <style> 14 math { 15 font: 25px Ahem; 16 } 17 </style> 18 </head> 19 <body> 20 21 <math> 22 <mstyle displaystyle="true"> 23 <munder><mo movablelimits="true">O</mo><mo>O</mo></munder> 24 <mover><mo movablelimits="true">O</mo><mo>O</mo></mover> 25 <munderover><mo movablelimits="true">O</mo><mo>O</mo><mo>O</mo></munderover> 26 </mstyle> 27 <mstyle displaystyle="false"> 28 <munder><mo movablelimits="true">O</mo><mo>O</mo></munder> 29 <mover><mo movablelimits="true">O</mo><mo>O</mo></mover> 30 <munderover><mo movablelimits="true">O</mo><mo>O</mo><mo>O</mo></munderover> 31 </mstyle> 32 </math> 33 34 <script src="/mathml/support/feature-detection.js"></script> 35 <script>MathMLFeatureDetection.ensure_for_match_reftest("has_movablelimits");</script> 36 </body> 37 </html>