diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /layout/reftests/mathml/ssty-4-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'layout/reftests/mathml/ssty-4-ref.html')
-rw-r--r-- | layout/reftests/mathml/ssty-4-ref.html | 156 |
1 files changed, 156 insertions, 0 deletions
diff --git a/layout/reftests/mathml/ssty-4-ref.html b/layout/reftests/mathml/ssty-4-ref.html new file mode 100644 index 0000000000..082acbfc49 --- /dev/null +++ b/layout/reftests/mathml/ssty-4-ref.html @@ -0,0 +1,156 @@ +<!DOCTYPE html> +<html> + <head> + <title>Dynamic ssty tests</title> + <!-- See ssty-1-ref.html for an explanation of this font --> + <style type="text/css" media="screen, print"> + @font-face { + font-family: "sstyfont"; + src: url("ssty.woff"); + } + </style> + </head> + <body> + + <math> + <mstyle style="font-family: 'sstyfont';"> + <mfrac> + <mo>B</mo> + <mo>B</mo> + </mfrac> + </mstyle> + </math> + + <p> + + <math> + <mstyle style="font-family: 'sstyfont';"> + <mfrac> + <mo>B</mo> + <mo>B</mo> + </mfrac> + </mstyle> + </math> + + <p> + + <math> + <mstyle style="font-family: 'sstyfont';"> + <mfrac> + <mo>B</mo> + <!-- deliberately invalid --> + </mfrac> + </mstyle> + </math> + + <p> + + <math> + <mstyle style="font-family: 'sstyfont';"> + <mo>D</mo> + </mstyle> + </math> + + <p> + + <math> + <mstyle style="font-family: 'sstyfont';"> + <mfrac> + <mfrac> + <mo>A</mo> + <mo>A</mo> + </mfrac> + <mfrac> + <mo>A</mo> + <mo>A</mo> + </mfrac> + </mfrac> + </mstyle> + </math> + + <p> + + <math> + <mstyle style="font-family: 'sstyfont';" scriptsizemultiplier="1.2"> + <mfrac> + <mfrac> + <mo>D</mo> + <mo>D</mo> + </mfrac> + <mfrac> + <mo>D</mo> + <mo>D</mo> + </mfrac> + </mfrac> + </mstyle> + </math> + + <p> + + <math> + <mstyle style="font-family: 'sstyfont';" scriptsizemultiplier="0.8"> + <mfrac> + <mfrac> + <mo>B</mo> + <mo>B</mo> + </mfrac> + <mfrac> + <mo>B</mo> + <mo>B</mo> + </mfrac> + </mfrac> + </mstyle> + </math> + + <p> + + <math> + <mstyle style="font-family: 'sstyfont';"> + <mfrac> + <mo>B</mo> + <mrow> + <mrow> + <mrow> + <mo>B</mo> + </mrow> + </mrow> + </mrow> + </mfrac> + </mstyle> + </math> + + <p> + + <math> + <mstyle style ="font-family: 'sstyfont';"> + <mfrac> + <mfrac> + <mo>C</mo> + <mo>C</mo> + </mfrac> + <mfrac> + <mo>C</mo> + <mo>C</mo> + </mfrac> + </mfrac> + </mstyle> + </math> + + <p> + + <math> + <mstyle id="mstyle5" style ="font-family: 'sstyfont'; font-feature-settings: 'ssty' 0"> + <mfrac> + <mfrac> + <mo>D</mo> + <mo>D</mo> + </mfrac> + <mfrac> + <mo>D</mo> + <mo>D</mo> + </mfrac> + </mfrac> + </mstyle> + </math> + </body> +</html> |