mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
30 lines
488 B
HTML
30 lines
488 B
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<title>math as mstyle</title>
|
|
</head>
|
|
<body>
|
|
|
|
<p>
|
|
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
<mfrac numalign="right">
|
|
<mn>123</mn>
|
|
<mn>456789</mn>
|
|
</mfrac>
|
|
</math>
|
|
</p>
|
|
|
|
<p>
|
|
<math xmlns="http://www.w3.org/1998/Math/MathML">
|
|
<mstyle scriptsizemultiplier="1.414">
|
|
<msup>
|
|
<mi>x</mi>
|
|
<mn>2</mn>
|
|
</msup>
|
|
</mstyle>
|
|
</math>
|
|
</p>
|
|
|
|
</body>
|
|
</html>
|