summaryrefslogtreecommitdiffstats
path: root/layout/mathml/tests/test_bug706406.html
blob: 76cfc63526562cda685a36c6028ed13f52ea0ae6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=706406
-->
<head>
  <title>Test for Bug 706406</title>
  <script type="application/javascript" src="/tests/SimpleTest/SimpleTest.js"></script>
  <script type="application/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css"/>
</head>
<body>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=706406">Mozilla Bug 706406</a>
<p id="display"></p>
<math xmlns="http://www.w3.org/1998/Math/MathML">
  <maction actiontype="toggle" id="maction">
    <mn>1</mn>
    <mn>2</mn>
  </maction>
</math>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 706406 **/

function doTest()
{
  function doStopPropagation(aEvent) {
    aEvent.stopPropagation();
  }

  var maction = document.getElementById("maction");

  synthesizeMouseAtCenter(maction, {});

  is(maction.getAttribute("selection"), "2",
     "maction's selection attribute isn't 2 by first click");

  synthesizeMouseAtCenter(maction, {});

  is(maction.getAttribute("selection"), "1",
     "maction's selection attribute isn't 1 by second click");

  window.addEventListener("mousedown", doStopPropagation, true);
  window.addEventListener("mouseup", doStopPropagation, true);
  window.addEventListener("click", doStopPropagation, true);

  synthesizeMouseAtCenter(maction, {});

  is(maction.getAttribute("selection"), "2",
     "maction's selection attribute isn't 2 by first click called stopPropagation()");

  synthesizeMouseAtCenter(maction, {});

  is(maction.getAttribute("selection"), "1",
     "maction's selection attribute isn't 1 by second click called stopPropagation()");

  window.removeEventListener("mousedown", doStopPropagation, true);
  window.removeEventListener("mouseup", doStopPropagation, true);
  window.removeEventListener("click", doStopPropagation, true);

  SimpleTest.finish();
}

SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(doTest);

</script>
</pre>
</body>
</html>