diff options
author | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
---|---|---|
committer | Matt A. Tobin <mattatobin@localhost.localdomain> | 2018-02-02 04:16:08 -0500 |
commit | 5f8de423f190bbb79a62f804151bc24824fa32d8 (patch) | |
tree | 10027f336435511475e392454359edea8e25895d /layout/reftests/mathml/quotes-1.xhtml | |
parent | 49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff) | |
download | UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip |
Add m-esr52 at 52.6.0
Diffstat (limited to 'layout/reftests/mathml/quotes-1.xhtml')
-rw-r--r-- | layout/reftests/mathml/quotes-1.xhtml | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/layout/reftests/mathml/quotes-1.xhtml b/layout/reftests/mathml/quotes-1.xhtml new file mode 100644 index 000000000..e833966f8 --- /dev/null +++ b/layout/reftests/mathml/quotes-1.xhtml @@ -0,0 +1,39 @@ +<html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait"> +<head> +<style type="text/css"> +body { font-family:sans-serif; } +p { height:2em; } +</style> +</head> +<body> +<p>:<ms xmlns="http://www.w3.org/1998/Math/MathML" lquote="L" rquote="R">_</ms></p> +<p>:<ms id="m1" xmlns="http://www.w3.org/1998/Math/MathML">_</ms></p> +<p>:<ms id="m2" xmlns="http://www.w3.org/1998/Math/MathML">_</ms></p> +<p>:<ms id="m3" xmlns="http://www.w3.org/1998/Math/MathML" lquote="_">_</ms></p> +<p>:<ms id="m4" xmlns="http://www.w3.org/1998/Math/MathML" rquote="_">_</ms></p> +<p>:<ms id="m5" xmlns="http://www.w3.org/1998/Math/MathML" lquote="_" rquote="_">_</ms></p> +<p>:<ms id="m6" xmlns="http://www.w3.org/1998/Math/MathML" lquote="_">_</ms></p> +<p>:<ms id="m7" xmlns="http://www.w3.org/1998/Math/MathML" rquote="_">_</ms></p> +<script> +function doTest() { + var m1 = document.getElementById("m1"); + m1.setAttribute("lquote", "L"); + var m2 = document.getElementById("m2"); + m2.setAttribute("rquote", "R"); + var m3 = document.getElementById("m3"); + m3.setAttribute("lquote", "L"); + var m4 = document.getElementById("m4"); + m4.setAttribute("rquote", "R"); + var m5 = document.getElementById("m5"); + m5.removeAttribute("lquote"); + m5.removeAttribute("rquote"); + var m6 = document.getElementById("m6"); + m6.removeAttribute("lquote"); + var m7 = document.getElementById("m7"); + m7.removeAttribute("rquote"); + document.documentElement.removeAttribute('class'); +} +window.addEventListener("MozReftestInvalidate", doTest, false); +</script> +</body> +</html> |