diff options
Diffstat (limited to 'layout/reftests/mathml/maction-dynamic-embellished-op.html')
-rw-r--r-- | layout/reftests/mathml/maction-dynamic-embellished-op.html | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/layout/reftests/mathml/maction-dynamic-embellished-op.html b/layout/reftests/mathml/maction-dynamic-embellished-op.html new file mode 100644 index 000000000..4ebf29ed1 --- /dev/null +++ b/layout/reftests/mathml/maction-dynamic-embellished-op.html @@ -0,0 +1,57 @@ +<!DOCTYPE html> +<html class="reftest-wait"> + +<head> +<title>dynamic maction and embellished op</title> +</head> + +<body> + + <p>'<math><maction id="m1"><mi>a</mi><mo>b</mo></maction></math>'</p> + <p>'<math><maction id="m2"><mo>b</mo><mi>a</mi></maction></math>'</p> + + <p>"<math><maction id="m3"><mi>a</mi><mo>b</mo></maction></math>"</p> + <p>"<math><maction id="m3bis"><mo>b</mo></maction></math>"</p> + + <p>{<math><maction id="m4"><mo>b</mo><mi>a</mi></maction></math>}</p> + <p>{<math><maction id="m4bis"><mi>a</mi></maction></math>}</p> + + + <p>[<math> + <mstyle id="m5"><maction><mi>a</mi><mo>b</mo></maction></mstyle> + </math>]</p> + <p>[<math> + <mstyle id="m6"><maction><mo>b</mo><mi>a</mi></maction></mstyle> + </math>]</p> + + <p>(<math id="m7"><maction><mi>a</mi><mo>b</mo></maction></math>)</p> + <p>(<math id="m8"><maction><mo>b</mo><mi>a</mi></maction></math>)</p> + +<script> +function doTest() +{ + document.getElementById("m1").setAttribute("selection", "2"); + document.getElementById("m2").setAttribute("selection", "2"); + + var m3 = document.getElementById("m3"); + var m3bis = document.getElementById("m3bis"); + m3bis.insertBefore(m3.removeChild(m3.firstChild), m3bis.firstChild); + + var m4 = document.getElementById("m4"); + var m4bis = document.getElementById("m4bis"); + m4bis.insertBefore(m4.removeChild(m4.firstChild), m4bis.firstChild); + + document.getElementById("m5").setAttribute("selection", "2"); + document.getElementById("m6").setAttribute("selection", "2"); + + document.getElementById("m7").setAttribute("selection", "2"); + document.getElementById("m8").setAttribute("selection", "2"); + + document.documentElement.removeAttribute("class"); +} + +window.addEventListener("MozReftestInvalidate", doTest, false); +</script> + +</body> +</html> |