summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/dom/events/Event-dispatch-throwing.html
blob: 7d1c0d94a0845b5351c50f5255bcff381cee17a6 (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
<!DOCTYPE html>
<meta charset="UTF-8">
<title>Throwing in event listeners</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<div id="log"></div>
<script>
setup({allow_uncaught_exception:true})

test(function() {
    var errorEvents = 0;
    window.onerror = this.step_func(function(e) {
        assert_equals(typeof e, 'string');
        ++errorEvents;
    });

    var element = document.createElement('div');

    element.addEventListener('click', function() {
        throw new Error('Error from only listener');
    });

    element.dispatchEvent(new Event('click'));

    assert_equals(errorEvents, 1);
}, "Throwing in event listener with a single listeners");

test(function() {
    var errorEvents = 0;
    window.onerror = this.step_func(function(e) {
        assert_equals(typeof e, 'string');
        ++errorEvents;
    });

    var element = document.createElement('div');

    var secondCalled = false;

    element.addEventListener('click', function() {
        throw new Error('Error from first listener');
    });
    element.addEventListener('click', this.step_func(function() {
        secondCalled = true;
    }), false);

    element.dispatchEvent(new Event('click'));

    assert_equals(errorEvents, 1);
    assert_true(secondCalled);
}, "Throwing in event listener with multiple listeners");
</script>