diff options
Diffstat (limited to 'layout/reftests/mathml/semantics-1-ref.xhtml')
-rw-r--r-- | layout/reftests/mathml/semantics-1-ref.xhtml | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/layout/reftests/mathml/semantics-1-ref.xhtml b/layout/reftests/mathml/semantics-1-ref.xhtml new file mode 100644 index 0000000000..f5a6d4d493 --- /dev/null +++ b/layout/reftests/mathml/semantics-1-ref.xhtml @@ -0,0 +1,66 @@ +<?xml version="1.0" encoding="utf-8"?> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> + <meta http-equiv="content-type" + content="application/xhtml+xml; charset=utf-8" /> + <title>Various tests for semantics</title> + <style> + @font-face + { + font-family: Ahem; + src: url(../fonts/Ahem.ttf); + } + math, p { + font: 25px Ahem; + } + </style> +</head> + +<body> +<!-- displaystyle (bug 468059) --> +<p><math xmlns="http://www.w3.org/1998/Math/MathML" display="block"> + <semantics> + <mstyle displaystyle="true"> + <munderover> + <mo movablelimits="true">pXp</mo> + <mtext>XpXpXp</mtext> + <mtext>XpXpXp</mtext> + </munderover> + </mstyle> + </semantics> +</math></p> + +<!-- unwanted whitespace (bug 512418) --> +<p>XpXpXp<math xmlns="http://www.w3.org/1998/Math/MathML"> + <mrow> + <mrow> + <mo>lcm</mo> + <mo>(</mo> + <mn>a</mn> + <mo>,</mo> + <mn>b</mn> + <mo>)</mo> + </mrow> + <mo>=</mo> + <mfrac> + <mrow> + <mo>(</mo> + <mn>a</mn> + <mo>⁢</mo> + <mn>b</mn> + <mo>)</mo> + </mrow> + <mrow> + <mo>gcd</mo> + <mo>(</mo> + <mn>a</mn> + <mo>,</mo> + <mn>b</mn> + <mo>)</mo> + </mrow> + </mfrac> + </mrow> +</math>XpXpXp</p> + +</body> +</html> |