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/fractions/frac-mrow-001.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fraction mrow</title>
<meta name="assert" content="This test that <mrow> elements can be used as numerator and denominator of fractions.">
<link rel="match" href="frac-mrow-001-ref.html">
</head>
<body style="font-size: 20pt;">
<p>This test passes if you see a fraction with a blue square as numerator and a cyan square as denominator.</p>
<math>
<mfrac>
<mrow>
<mspace width="30px" height="60px" style="background: blue"></mspace>
<mspace width="30px" height="60px" style="background: blue "></mspace>
</mrow>
<mrow>
<mspace width="30px" height="60px" style="background: cyan"></mspace>
<mspace width="30px" height="60px" style="background: cyan "></mspace>
</mrow>
</mfrac>
</math>
<script src="/mathml/support/feature-detection.js"></script>
<script>MathMLFeatureDetection.ensure_for_match_reftest("has_mfrac");</script>
</body>
</html>