diff options
Diffstat (limited to 'layout/reftests/mathml/displaystyle-2-ref.html')
-rw-r--r-- | layout/reftests/mathml/displaystyle-2-ref.html | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/layout/reftests/mathml/displaystyle-2-ref.html b/layout/reftests/mathml/displaystyle-2-ref.html new file mode 100644 index 000000000..d36a9ce5a --- /dev/null +++ b/layout/reftests/mathml/displaystyle-2-ref.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html> + <head> + <title>displaystyle</title> + <meta charset="utf-8"/> + </head> + <body> + + <!-- Test the effect of displaystyle on munder, mover and munderover --> + <math> + <mstyle displaystyle="true"> + <munder><mo>O</mo><mo>O</mo></munder> + <mover><mo>O</mo><mo>O</mo></mover> + <munderover><mo>O</mo><mo>O</mo><mo>O</mo></munderover> + </mstyle> + <mstyle displaystyle="false"> + <msub><mo>O</mo><mo>O</mo></msub> + <msup><mo>O</mo><mo>O</mo></msup> + <msubsup><mo>O</mo><mo>O</mo><mo>O</mo></msubsup> + </mstyle> + </math> + + </body> +</html> |