summaryrefslogtreecommitdiffstats
path: root/dom/html/test/test_bug618948.html
blob: 04a934726169c9e7e8d3692a051026e7d7ee22a6 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=618948
-->
<head>
  <title>Test for Bug 618948</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=618948">Mozilla Bug 618948</a>
<p id="display"></p>
<div id="content">
  <form>
    <input type='email' id='i'>
    <button>submit</button>
  </form>
</div>
<pre id="test">
<script type="application/javascript">

/** Test for Bug 618948 **/

var events = ["focus", "input", "change", "invalid" ];

var handled = ({});

function eventHandler(event)
{
 dump("\n" + event.type + "\n");
  handled[event.type] = true;
}

function beginTest()
{
  for (var e of events) {
    handled[e] = false;
  }

  i.focus();
}

function endTest()
{
  for (var e of events) {
    ok(handled[e], "on" + e + " should have been called");
  }

  SimpleTest.finish();
}

var i = document.getElementsByTagName('input')[0];
var b = document.getElementsByTagName('button')[0];

i.onfocus = function(event) {
  eventHandler(event);
  sendString("f");
  i.onfocus = null;
};

i.oninput = function(event) {
  eventHandler(event);
  b.focus();
  i.oninput = null;
};

i.onchange = function(event) {
  eventHandler(event);
  i.onchange = null;
  synthesizeMouseAtCenter(b, {});
};

i.oninvalid = function(event) {
  eventHandler(event);
  i.oninvalid = null;
  endTest();
};

SimpleTest.waitForExplicitFinish();

SimpleTest.waitForFocus(beginTest);

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