summaryrefslogtreecommitdiffstats
path: root/chrome/test/data/webui/event_target_test.html
blob: f023916bf618787fb03c809111fc1e1a2b953fc0 (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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html>
<html>
<body>
<script>

/* @const */ var EventTarget;

function setUp(){
  EventTarget = cr.EventTarget;
}

function testFunctionListener() {
  var fi = 0;
  function f(e) {
    fi++;
  }

  var gi = 0;
  function g(e) {
    gi++;
  }

  var et = new EventTarget;
  et.addEventListener('f', f);
  et.addEventListener('g', g);

  // Adding again should not cause it to be called twice
  et.addEventListener('f', f);
  et.dispatchEvent(new Event('f'));
  assertEquals(1, fi, 'Should have been called once');
  assertEquals(0, gi);

  et.removeEventListener('f', f);
  et.dispatchEvent(new Event('f'));
  assertEquals(1, fi, 'Should not have been called again');

  et.dispatchEvent(new Event('g'));
  assertEquals(1, gi, 'Should have been called once');
}

function testHandleEvent() {
  var fi = 0;
  var f = {
    handleEvent: function(e) {
      fi++;
    }
  };

  var gi = 0;
  var g = {
    handleEvent: function(e) {
      gi++;
    }
  };

  var et = new EventTarget;
  et.addEventListener('f', f);
  et.addEventListener('g', g);

  // Adding again should not cause it to be called twice
  et.addEventListener('f', f);
  et.dispatchEvent(new Event('f'));
  assertEquals(1, fi, 'Should have been called once');
  assertEquals(0, gi);

  et.removeEventListener('f', f);
  et.dispatchEvent(new Event('f'));
  assertEquals(1, fi, 'Should not have been called again');

  et.dispatchEvent(new Event('g'));
  assertEquals(1, gi, 'Should have been called once');
}

function testPreventDefault() {
  var i = 0;
  function prevent(e) {
    i++;
    e.preventDefault();
  }

  var j = 0;
  function pass(e) {
    j++;
  }

  var et = new EventTarget;
  et.addEventListener('test', pass);

  assertTrue(et.dispatchEvent(new Event('test', {cancelable: true})));
  assertEquals(1, j);

  et.addEventListener('test', prevent);

  console.log('NOW');
  assertFalse(et.dispatchEvent(new Event('test', {cancelable: true})));
  assertEquals(2, j);
  assertEquals(1, i);
}


function testReturnFalse() {
  var i = 0;
  function prevent(e) {
    i++;
    return false;
  }

  var j = 0;
  function pass(e) {
    j++;
  }

  var et = new EventTarget;
  et.addEventListener('test', pass);

  assertTrue(et.dispatchEvent(new Event('test', {cancelable: true})));
  assertEquals(1, j);

  et.addEventListener('test', prevent);

  assertFalse(et.dispatchEvent(new Event('test', {cancelable: true})));
  assertEquals(2, j);
  assertEquals(1, i);
}

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