summaryrefslogtreecommitdiffstats
path: root/dom/html/test/test_bug694503.html
blob: 4ff10feffcda4c5869de8306acd755b086dc658e (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
72
73
74
75
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=694503
-->
<head>
  <title>Test for Bug 694503</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <script 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=694503">Mozilla Bug 694503</a>
<p id="display"></p>
<div id="content" style="display: none">
</div>

<div>
<map name="map1">
  <area onclick="++mapClickCount; event.preventDefault();"
        coords="0,0,50,50" shape="rect">
</map>
</div>

<img id="img"
     usemap="#map1" alt="Foo bar" src="about:logo">
<pre id="test">
<script type="application/javascript">

/** Test for Bug 694503 **/

var mapClickCount = 0;

SimpleTest.waitForExplicitFinish();
SimpleTest.waitForFocus(function() {
  var m = document.getElementsByTagName("map")[0];
  var img = document.getElementById('img');
  var origName = m.name;

  synthesizeMouse(img, 25, 25, {});
  is(mapClickCount, 1, "Wrong click count (1)");

  m.name = "foo"
  synthesizeMouse(img, 25, 25, {});
  is(mapClickCount, 1, "Wrong click count (2)");

  m.removeAttribute("name");
  m.id = origName;
  synthesizeMouse(img, 25, 25, {});
  is(mapClickCount, 2, "Wrong click count (3)");

  // Back to original state
  m.removeAttribute("id");
  m.name = origName;
  synthesizeMouse(img, 25, 25, {});
  is(mapClickCount, 3, "Wrong click count (4)");

  var p = m.parentNode;
  p.removeChild(m);
  synthesizeMouse(img, 25, 25, {});
  is(mapClickCount, 3, "Wrong click count (5)");

  // Back to original state
  p.appendChild(m);
  synthesizeMouse(img, 25, 25, {});
  is(mapClickCount, 4, "Wrong click count (6)");

  SimpleTest.finish();
});


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