layout/reftests/mathml/maction-dynamic-3.html

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.

michael@0 1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
michael@0 2 <head>
michael@0 3 <title>dynamic maction 3</title>
michael@0 4 </head>
michael@0 5
michael@0 6 <body>
michael@0 7
michael@0 8 <p>
michael@0 9 <math>
michael@0 10 <maction id="m1" actiontype="toggle">
michael@0 11 <mtext>--1--</mtext>
michael@0 12 <mtext>--2--</mtext>
michael@0 13 </maction>
michael@0 14 </math>
michael@0 15 </p>
michael@0 16
michael@0 17 <p>
michael@0 18 <math>
michael@0 19 <maction id="m2" actiontype="toggle" selection="5">
michael@0 20 <mtext>--1--</mtext>
michael@0 21 <mtext>--2--</mtext>
michael@0 22 </maction>
michael@0 23 </math>
michael@0 24 </p>
michael@0 25
michael@0 26 <p>
michael@0 27 <math>
michael@0 28 <maction id="m3" actiontype="toggle" selection="5">
michael@0 29 <mtext>--1--</mtext>
michael@0 30 <mtext>--2--</mtext>
michael@0 31 </maction>
michael@0 32 </math>
michael@0 33 </p>
michael@0 34
michael@0 35 <p>
michael@0 36 <math>
michael@0 37 <maction id="m4" actiontype="toggle">
michael@0 38 <mtext>--1--</mtext>
michael@0 39 <mtext>--2--</mtext>
michael@0 40 </maction>
michael@0 41 </math>
michael@0 42 </p>
michael@0 43
michael@0 44 <p>
michael@0 45 <math>
michael@0 46 <maction id="m5" actiontype="toggle" selection="5">
michael@0 47 <mtext>--1--</mtext>
michael@0 48 <mtext>--2--</mtext>
michael@0 49 </maction>
michael@0 50 </math>
michael@0 51 </p>
michael@0 52
michael@0 53 <p>
michael@0 54 <math>
michael@0 55 <maction id="m6" actiontype="toggle">
michael@0 56 <mtext>--1--</mtext>
michael@0 57 <mtext>--2--</mtext>
michael@0 58 </maction>
michael@0 59 </math>
michael@0 60 </p>
michael@0 61
michael@0 62 <p>
michael@0 63 <math>
michael@0 64 <maction id="m7">
michael@0 65 <mtext>--1--</mtext>
michael@0 66 <mtext>--2--</mtext>
michael@0 67 </maction>
michael@0 68 </math>
michael@0 69 </p>
michael@0 70
michael@0 71 <p>
michael@0 72 <math>
michael@0 73 <maction id="m8" actiontype="unknown-action-type">
michael@0 74 <mtext>--1--</mtext>
michael@0 75 <mtext>--2--</mtext>
michael@0 76 </maction>
michael@0 77 </math>
michael@0 78 </p>
michael@0 79
michael@0 80 <p>
michael@0 81 <math>
michael@0 82 <maction id="m9" selection="5">
michael@0 83 <mtext>--1--</mtext>
michael@0 84 <mtext>--2--</mtext>
michael@0 85 </maction>
michael@0 86 </math>
michael@0 87 </p>
michael@0 88
michael@0 89 <p>
michael@0 90 <math>
michael@0 91 <maction id="m10" actiontype="unknown-action-type" selection="5">
michael@0 92 <mtext>--1--</mtext>
michael@0 93 <mtext>--2--</mtext>
michael@0 94 </maction>
michael@0 95 </math>
michael@0 96 </p>
michael@0 97
michael@0 98 <p>
michael@0 99 <math>
michael@0 100 <maction id="m11" actiontype="statusline">
michael@0 101 <mtext>--1--</mtext>
michael@0 102 <mtext>--2--</mtext>
michael@0 103 </maction>
michael@0 104 </math>
michael@0 105 </p>
michael@0 106
michael@0 107 <p>
michael@0 108 <math>
michael@0 109 <maction id="m12" actiontype="statusline" selection="5">
michael@0 110 <mtext>--1--</mtext>
michael@0 111 <mtext>--2--</mtext>
michael@0 112 </maction>
michael@0 113 </math>
michael@0 114 </p>
michael@0 115
michael@0 116 <script>
michael@0 117 function doTest() {
michael@0 118 document.getElementById("m1").setAttribute("selection", "5");
michael@0 119 document.getElementById("m2").setAttribute("selection", "1");
michael@0 120 document.getElementById("m3").setAttribute("actiontype", "statusline");
michael@0 121 document.getElementById("m4").removeAttribute("actiontype");
michael@0 122 document.getElementById("m5").setAttribute("actiontype", "unknown-action-type");
michael@0 123 document.getElementById("m6").setAttribute("actiontype", "unknown-action-type");
michael@0 124 document.getElementById("m7").setAttribute("actiontype", "toggle");
michael@0 125 document.getElementById("m8").setAttribute("actiontype", "toggle");
michael@0 126 document.getElementById("m9").setAttribute("actiontype", "statusline");
michael@0 127 document.getElementById("m10").setAttribute("actiontype", "statusline");
michael@0 128 document.getElementById("m11").setAttribute("selection", "5");
michael@0 129 document.getElementById("m12").setAttribute("actiontype", "toggle");
michael@0 130
michael@0 131 document.documentElement.removeAttribute('class');
michael@0 132 }
michael@0 133 window.addEventListener("MozReftestInvalidate", doTest, false);
michael@0 134 </script>
michael@0 135
michael@0 136 </body>
michael@0 137 </html>

mercurial