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/mathvariant-font-style-font-weight.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>mathvariant attribute and font-style/font-weight</title>
<link rel="match" href="mathvariant-font-style-font-weight-ref.html"/>
<meta name="assert" content="Verify that a mathvariant attribute does not cancel the effect of font-style/font-weight.">
<style>
.italic { font-style: italic; }
.bold { font-weight: bold; }
</style>
</head>
<body>
<p>This test passes if you see six lines of text (italic, italic, bold, bold, bold italic and bold italic) with the corresponding style applied:</p>
<p>
<math mathvariant="normal">
<mtext class="italic">italic</mtext>
</math>
</p>
<p>
<math>
<mtext mathvariant="normal" class="italic">italic</mtext>
</math>
</p>
<p>
<math mathvariant="normal">
<mtext class="bold">bold</mtext>
</math>
</p>
<p>
<math>
<mtext mathvariant="normal" class="bold">bold</mtext>
</math>
</p>
<p>
<math mathvariant="normal">
<mtext class="bold italic">bold italic</mtext>
</math>
</p>
<p>
<math>
<mtext mathvariant="normal" class="bold italic">bold italic</mtext>
</math>
</p>
</body>
</html>