| <!doctype html> |
| <html> |
| <head> |
| <title>Open Type MATH - stretchy operator</title> |
| <meta charset="utf-8"/> |
| <style type="text/css"> |
| /* This font is taken from Mozilla's test suite. */ |
| @font-face { |
| font-family: stretchy; |
| src: url("stretchy.woff"); |
| } |
| math { |
| font-family: stretchy; |
| font-size: 10px; |
| } |
| </style> |
| </head> |
| <body> |
| |
| <!-- This checks various vertical size variants. --> |
| |
| <p> |
| <math><mrow><mo symmetric="false" stretchy="true" minsize="1em">↟</mo></mrow></math> |
| <math><mrow><mo symmetric="false" stretchy="true" minsize="2em">↟</mo></mrow></math> |
| <math><mrow><mo symmetric="false" stretchy="true" minsize="3em">↟</mo></mrow></math> |
| </p> |
| |
| <!-- This checks vertical glyph assembly. --> |
| <p> |
| <math><mrow><mo symmetric="false" stretchy="true" minsize="15em">↟</mo></mrow></math> |
| </p> |
| |
| <!-- This checks large operator in display style. --> |
| <p> |
| <math displaystyle="true"> |
| <mrow><mo>⨛</mo></mrow> |
| </math> |
| </p> |
| |
| </body> |
| </html> |