haikuwebkit/LayoutTests/mathml/presentation/mathvariant-inheritance-exp...

52 lines
1006 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!doctype html>
<html>
<head>
<title>mathvariant inheritance</title>
<meta charset="utf-8"/>
</head>
<body>
<!-- Verify that fraktur is inherited on mtext. -->
<math>
<mtext>𝔄</mtext>
</math><br/>
<math>
<mstyle>
<mtext>𝔄</mtext>
</mstyle>
</math><br/>
<!-- Verify that the value specified on the mtext overrides the inherited value. -->
<math>
<mtext>𝒜</mtext>
</math><br/>
<math>
<mstyle>
<mtext>𝒜</mtext>
</mstyle>
</math><br/>
<!-- Verify that the inherited value replaces the implicit italic value of the mi. -->
<math>
<mi>𝔄</mi>
</math><br/>
<math>
<mstyle>
<mi>𝔄</mi>
</mstyle>
</math><br/>
<!-- Test a chain of inheritance -->
<math>
<mtext>𝔄</mtext>
<mstyle>
<mtext>𝔸</mtext>
<mstyle>
<mtext>𝒜</mtext>
</mstyle>
</mstyle>
</math>
</body>
</html>