summaryrefslogtreecommitdiffstats
path: root/dom/events/test/test_bug412567.html
blob: 86f7001fc21d80b336b58b8575ca0c1a80add057 (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
<!DOCTYPE HTML>
<html>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=412567
-->
<head>
  <title>Test for Bug 412567</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css" />
</head>
<body onload="testRedispatching(event);">
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=412567">Mozilla Bug 412567</a>
<p id="display"></p>
<div id="content" style="display: none" onload="redispatchinHandler(event)">
  
</div>
<pre id="test">
<script class="testbody" type="text/javascript">

/** Test for Bug 412567 **/

var loadEvent = null;

function redispatchinHandler(evt) {
  is(evt.type, "load", "Wrong event type!");
  ok(!evt.isTrusted, "Event should not be trusted!");
  SimpleTest.finish();
}

function redispatch() {
  ok(loadEvent.isTrusted, "Event should be trusted before redispatching!");
  document.getElementById('content').dispatchEvent(loadEvent);
}

function testRedispatching(evt) {
  is(evt.type, "load", "Wrong event type!");
  ok(evt.isTrusted, "Event should be trusted!");
  loadEvent = evt;
  setTimeout(redispatch, 0);
}

SimpleTest.waitForExplicitFinish();
</script>
</pre>
</body>
</html>