displaystyle-015.html (2403B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title>displaystyle and display</title> 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/#the-top-level-math-element"> 9 <link rel="help" href="https://w3c.github.io/mathml-core/#underscripts-and-overscripts-munder-mover-munderover"> 10 <link rel="help" href="https://w3c.github.io/mathml-core/#operator-fence-separator-or-accent-mo"> 11 <link rel="help" href="https://w3c.github.io/mathml-core/#operator-dictionary"> 12 <link rel="match" href="displaystyle-015-ref.html"/> 13 <meta name="assert" content="Test interaction of math@display and displaystyle on an operator with movablelimits"> 14 </head> 15 <body> 16 <math> 17 <mstyle displaystyle="false"> 18 <munderover> 19 <mo>∑</mo> 20 <mi>b</mi> 21 <mi>c</mi> 22 </munderover> 23 </mstyle> 24 </math> 25 <math> 26 <mstyle displaystyle="true"> 27 <munderover> 28 <mo>∑</mo> 29 <mi>b</mi> 30 <mi>c</mi> 31 </munderover> 32 </mstyle> 33 </math> 34 <math display="inline"> 35 <mstyle displaystyle="true"> 36 <munderover> 37 <mo>∑</mo> 38 <mi>b</mi> 39 <mi>c</mi> 40 </munderover> 41 </mstyle> 42 </math> 43 <math display="block"> 44 <mstyle displaystyle="true"> 45 <munderover> 46 <mo>∑</mo> 47 <mi>b</mi> 48 <mi>c</mi> 49 </munderover> 50 </mstyle> 51 </math> 52 <math> 53 <mstyle displaystyle="false"> 54 <munderover> 55 <mo>∑</mo> 56 <mi>b</mi> 57 <mi>c</mi> 58 </munderover> 59 </mstyle> 60 </math> 61 <math display="inline"> 62 <mstyle displaystyle="false"> 63 <munderover> 64 <mo>∑</mo> 65 <mi>b</mi> 66 <mi>c</mi> 67 </munderover> 68 </mstyle> 69 </math> 70 <math display="block"> 71 <mstyle displaystyle="false"> 72 <munderover> 73 <mo>∑</mo> 74 <mi>b</mi> 75 <mi>c</mi> 76 </munderover> 77 </mstyle> 78 </math> 79 80 <script src="/mathml/support/feature-detection.js"></script> 81 <script>MathMLFeatureDetection.ensure_for_match_reftest("has_movablelimits");</script> 82 </body> 83 </html>