Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /mathml/relations/css-styling/displaystyle-015.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>displaystyle and display</title>
<link rel="help" href="https://w3c.github.io/mathml-core/#the-displaystyle-and-scriptlevel-attributes">
<link rel="help" href="https://w3c.github.io/mathml-core/#underscripts-and-overscripts-munder-mover-munderover">
<link rel="match" href="displaystyle-015-ref.html"/>
<meta name="assert" content="Test interaction of math@display and displaystyle on an operator with movablelimits">
</head>
<body>
<math>
<mstyle displaystyle="false">
<munderover>
<mo>∑</mo>
<mi>b</mi>
<mi>c</mi>
</munderover>
</mstyle>
</math>
<math>
<mstyle displaystyle="true">
<munderover>
<mo>∑</mo>
<mi>b</mi>
<mi>c</mi>
</munderover>
</mstyle>
</math>
<math display="inline">
<mstyle displaystyle="true">
<munderover>
<mo>∑</mo>
<mi>b</mi>
<mi>c</mi>
</munderover>
</mstyle>
</math>
<math display="block">
<mstyle displaystyle="true">
<munderover>
<mo>∑</mo>
<mi>b</mi>
<mi>c</mi>
</munderover>
</mstyle>
</math>
<math>
<mstyle displaystyle="false">
<munderover>
<mo>∑</mo>
<mi>b</mi>
<mi>c</mi>
</munderover>
</mstyle>
</math>
<math display="inline">
<mstyle displaystyle="false">
<munderover>
<mo>∑</mo>
<mi>b</mi>
<mi>c</mi>
</munderover>
</mstyle>
</math>
<math display="block">
<mstyle displaystyle="false">
<munderover>
<mo>∑</mo>
<mi>b</mi>
<mi>c</mi>
</munderover>
</mstyle>
</math>
<script src="/mathml/support/feature-detection.js"></script>
<script>MathMLFeatureDetection.ensure_for_match_reftest("has_movablelimits");</script>
</body>
</html>