mathscript-1.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <head>
  3. <style type="text/css" media="screen, print">
  4. @font-face {
  5. font-family: "mathssty";
  6. src: url("mathssty.woff");
  7. }
  8. </style>
  9. </head>
  10. <body>
  11. <!-- Demonstrate that it has no effect outside MathML -->
  12. <div style="font-family: 'mathssty';
  13. font-feature-settings: 'ssty' 1">A</div>
  14. <div style="font-family: 'mathssty';
  15. font-feature-settings: 'ssty' 2">A</div>
  16. <!-- Demonstrate that it works within MathML -->
  17. <math>
  18. <mstyle style="font-family: 'mathssty';">
  19. <mrow>
  20. <mo style="font-feature-settings: 'ssty' 0">A</mo>
  21. <mo style="font-feature-settings: 'ssty' 1">A</mo>
  22. <mo style="font-feature-settings: 'ssty' 2">A</mo>
  23. </mrow>
  24. </mstyle>
  25. </math>
  26. <p>
  27. <!-- verify it works for the other elements except mtext -->
  28. <math>
  29. <mstyle style="font-family: 'mathssty'; font-feature-settings: 'ssty' 2">
  30. <mi mathvariant="normal">A</mi>
  31. <mn>A</mn>
  32. <mtext>A</mtext>
  33. </mstyle>
  34. </math>
  35. </body>