Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /mathml/presentation-markup/operators/mo-movablelimits-default.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title><mo> movablelimits default value</title>
<meta name="assert" content="Verifies default value of movablelimits for some operators.">
<link rel="match" href="mo-movablelimits-default-ref.html">
</head>
<body>
<math>
<munder>
<mo>∑</mo> <!-- This has movablelimits="true" in the operator dictionary -->
<mi>x</mi>
</munder>
<munder>
<mo>∫</mo> <!-- This has movablelimits="false" in the operator dictionary -->
<mi>x</mi>
</munder>
</math>
<script src="/mathml/support/feature-detection.js"></script>
<script>MathMLFeatureDetection.ensure_for_match_reftest("has_munderover");</script>
</body>
</html>