summaryrefslogtreecommitdiffstats
path: root/dom/base/test/test_bug737087.html
blob: 008ad3bc0360f6765b92ed3ac0ab248cf3ae544c (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
<!DOCTYPE HTML>
<!--
https://bugzilla.mozilla.org/show_bug.cgi?id=737087
-->
<title>Test for Bug 737087</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
<a target="_blank" href="https://bugzilla.mozilla.org/show_bug.cgi?id=737087">Mozilla Bug 737087</a>
<script>

/** Test for Bug 737087 **/
SimpleTest.waitForExplicitFinish();

var bubbled = false;
var capturedEvent = null;
var inlineFiredEvent = null;

addEventListener("error", function() { bubbled = true });
addEventListener("error", function(e) {
  capturedEvent = e;
  is(typeof e, "object", "Error event must be object");
  is(Object.getPrototypeOf(e), Event.prototype, "Error event must be Event");
  is(e.bubbles, false, "e.bubbles must be false");
  is(e.cancelable, false, "e.cancelable must be false");
}, true);

addLoadEvent(function() {
  is(bubbled, false, "Error event must not bubble");
  isnot(capturedEvent, null, "Error event must be captured");
  isnot(inlineFiredEvent, null, "Inline error handler must fire");
  is(capturedEvent, inlineFiredEvent,
     "Same event must be handled by both handlers");
  SimpleTest.finish();
});
</script>
<script src=nonexistent
  onerror="inlineFiredEvent = event"></script>