diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/mathml/relations/css-styling/width-height-003-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/mathml/relations/css-styling/width-height-003-ref.html')
-rw-r--r-- | testing/web-platform/tests/mathml/relations/css-styling/width-height-003-ref.html | 178 |
1 files changed, 178 insertions, 0 deletions
diff --git a/testing/web-platform/tests/mathml/relations/css-styling/width-height-003-ref.html b/testing/web-platform/tests/mathml/relations/css-styling/width-height-003-ref.html new file mode 100644 index 0000000000..84eb2cd089 --- /dev/null +++ b/testing/web-platform/tests/mathml/relations/css-styling/width-height-003-ref.html @@ -0,0 +1,178 @@ +<!DOCTYPE html> +<html> +<head> +<meta charset="utf-8"> +<title>content position with width/height (reference)</title> +<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" /> +<style> + body, math { + font: 25px/1 Ahem; + color: black; + } + .test { + margin: .5em; + } + .box { + width: 7em; + height: 3em; + border: 1px solid blue; + display: inline-block; + } + .center { + text-align: center; + } +</style> +</head> +<body> + + <div class="test"> + <div class="box center"> + <math> + <munder> + <mtext>X</mtext> + <mtext>X</mtext> + </munder> + </math> + </div> + <div class="box center" dir="rtl"> + <math dir="rtl"> + <munder> + <mtext>X</mtext> + <mtext>X</mtext> + </munder> + </math> + </div> + </div> + + <div class="test"> + <div class="box center"> + <math> + <mover> + <mtext>X</mtext> + <mtext>X</mtext> + </mover> + </math> + </div> + <div class="box center" dir="rtl"> + <math dir="rtl"> + <mover> + <mtext>X</mtext> + <mtext>X</mtext> + </mover> + </math> + </div> + </div> + + <div class="test"> + <div class="box center"> + <math> + <munderover> + <mtext>X</mtext> + <mtext>X</mtext> + <mtext>X</mtext> + </munderover> + </math> + </div> + <div class="box center" dir="rtl"> + <math dir="rtl"> + <munderover> + <mtext>X</mtext> + <mtext>X</mtext> + <mtext>X</mtext> + </munderover> + </math> + </div> + </div> + + <div class="test"> + <div class="box"> + <math> + <msub> + <mtext>X</mtext> + <mtext>X</mtext> + </msub> + </math> + </div> + <div class="box" dir="rtl"> + <math dir="rtl"> + <msub> + <mtext>X</mtext> + <mtext>X</mtext> + </msub> + </math> + </div> + </div> + + <div class="test"> + <div class="box"> + <math> + <msup> + <mtext>X</mtext> + <mtext>X</mtext> + </msup> + </math> + </div> + <div class="box" dir="rtl"> + <math dir="rtl"> + <msup> + <mtext>X</mtext> + <mtext>X</mtext> + </msup> + </math> + </div> + </div> + + <div class="test"> + <div class="box"> + <math> + <msubsup> + <mtext>X</mtext> + <mtext>X</mtext> + <mtext>X</mtext> + </msubsup> + </math> + </div> + <div class="box" dir="rtl"> + <math dir="rtl"> + <msubsup> + <mtext>X</mtext> + <mtext>X</mtext> + <mtext>X</mtext> + </msubsup> + </math> + </div> + </div> + + <div class="test"> + <div class="box"> + <math> + <mmultiscripts> + <mtext>X</mtext> + <mtext>X</mtext> + <mtext>X</mtext> + <mtext>X</mtext> + <mtext>X</mtext> + <mprescripts/> + <mtext>X</mtext> + <mtext>X</mtext> + </mmultiscripts> + </math> + </div> + <div class="box" dir="rtl"> + <math dir="rtl"> + <mmultiscripts> + <mtext>X</mtext> + <mtext>X</mtext> + <mtext>X</mtext> + <mtext>X</mtext> + <mtext>X</mtext> + <mprescripts/> + <mtext>X</mtext> + <mtext>X</mtext> + </mmultiscripts> + </math> + </div> + </div> + +</body> +</htmL> |