mo-movablelimits-from-in-flow.html (1736B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"/> 5 <title><mo> movablelimits</title> 6 <link rel="help" href="https://w3c.github.io/mathml-core/#operator-fence-separator-or-accent-mo"> 7 <meta name="assert" content="Verify movablelimits is read from the first in-flow child."> 8 <style> 9 math, math * { 10 font: 25px/1 Ahem; 11 } 12 .oof1 { 13 position: absolute; 14 } 15 .oof2 { 16 position: fixed; 17 } 18 .nobox { 19 display: none; 20 } 21 </style> 22 <link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> 23 <link rel="match" href="mo-movablelimits-from-in-flow-ref.html"> 24 </head> 25 <body> 26 <math> 27 <munder> 28 <mo class="oof1" movablelimits="false"></mo> 29 <mo class="oof2" movablelimits="false"></mo> 30 <mo class="nobox" movablelimits="false"></mo> 31 <mo lspace="0px" rspace="0px" movablelimits="true">+</mo> 32 <mn>1</mn> 33 </munder> 34 <mover> 35 <mo class="oof1" movablelimits="false"></mo> 36 <mo class="oof2" movablelimits="false"></mo> 37 <mo class="nobox" movablelimits="false"></mo> 38 <mo lspace="0px" rspace="0px" movablelimits="true">+</mo> 39 <mn>1</mn> 40 </mover> 41 <munderover> 42 <mo class="oof1" movablelimits="false"></mo> 43 <mo class="oof2" movablelimits="false"></mo> 44 <mo class="nobox" movablelimits="false"></mo> 45 <mo lspace="0px" rspace="0px" movablelimits="true">+</mo> 46 <mn>1</mn> 47 <mn>2</mn> 48 </munderover> 49 </math> 50 <script src="/mathml/support/feature-detection.js"></script> 51 <script>MathMLFeatureDetection.ensure_for_match_reftest("has_munderover");</script> 52 </body> 53 </html>