layout/reftests/mathml/quotes-1.xhtml

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
     2 <head>
     3 <style type="text/css">
     4 body { font-family:sans-serif; }
     5 p { height:2em; }
     6 </style>
     7 </head>
     8 <body>
     9 <p>:<ms xmlns="http://www.w3.org/1998/Math/MathML" lquote="L" rquote="R">_</ms></p>
    10 <p>:<ms id="m1" xmlns="http://www.w3.org/1998/Math/MathML">_</ms></p>
    11 <p>:<ms id="m2" xmlns="http://www.w3.org/1998/Math/MathML">_</ms></p>
    12 <p>:<ms id="m3" xmlns="http://www.w3.org/1998/Math/MathML" lquote="_">_</ms></p>
    13 <p>:<ms id="m4" xmlns="http://www.w3.org/1998/Math/MathML" rquote="_">_</ms></p>
    14 <p>:<ms id="m5" xmlns="http://www.w3.org/1998/Math/MathML" lquote="_" rquote="_">_</ms></p>
    15 <p>:<ms id="m6" xmlns="http://www.w3.org/1998/Math/MathML" lquote="_">_</ms></p>
    16 <p>:<ms id="m7" xmlns="http://www.w3.org/1998/Math/MathML" rquote="_">_</ms></p>
    17 <script>
    18 function doTest() {
    19   var m1 = document.getElementById("m1");
    20   m1.setAttribute("lquote", "L");
    21   var m2 = document.getElementById("m2");
    22   m2.setAttribute("rquote", "R");
    23   var m3 = document.getElementById("m3");
    24   m3.setAttribute("lquote", "L");
    25   var m4 = document.getElementById("m4");
    26   m4.setAttribute("rquote", "R");
    27   var m5 = document.getElementById("m5");
    28   m5.removeAttribute("lquote");
    29   m5.removeAttribute("rquote");
    30   var m6 = document.getElementById("m6");
    31   m6.removeAttribute("lquote");
    32   var m7 = document.getElementById("m7");
    33   m7.removeAttribute("rquote");
    34   document.documentElement.removeAttribute('class');
    35 }
    36 window.addEventListener("MozReftestInvalidate", doTest, false);
    37 </script>
    38 </body>
    39 </html>

mercurial