| OLD | NEW |
| 1 library EventsTest; | 1 library EventsTest; |
| 2 import '../../pkg/unittest/lib/unittest.dart'; | 2 import '../../pkg/unittest/lib/unittest.dart'; |
| 3 import '../../pkg/unittest/lib/html_config.dart'; | 3 import '../../pkg/unittest/lib/html_config.dart'; |
| 4 import 'dart:html'; | 4 import 'dart:html'; |
| 5 | 5 |
| 6 main() { | 6 main() { |
| 7 useHtmlConfiguration(); | 7 useHtmlConfiguration(); |
| 8 test('TimeStamp', () { | 8 test('TimeStamp', () { |
| 9 Event event = new Event('test'); | 9 Event event = new Event('test'); |
| 10 | 10 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 element.on['test'].dispatch(event); | 47 element.on['test'].dispatch(event); |
| 48 expect(invocationCounter, 1); | 48 expect(invocationCounter, 1); |
| 49 | 49 |
| 50 element.on['test'].add(handler, false); | 50 element.on['test'].add(handler, false); |
| 51 invocationCounter = 0; | 51 invocationCounter = 0; |
| 52 element.on['test'].dispatch(event); | 52 element.on['test'].dispatch(event); |
| 53 expect(invocationCounter, 1); | 53 expect(invocationCounter, 1); |
| 54 }); | 54 }); |
| 55 test('InitMouseEvent', () { | 55 test('InitMouseEvent', () { |
| 56 DivElement div = new Element.tag('div'); | 56 DivElement div = new Element.tag('div'); |
| 57 MouseEvent event = document.$dom_createEvent('MouseEvent'); | 57 MouseEvent event = new MouseEvent('zebra', relatedTarget: div); |
| 58 event.$dom_initMouseEvent('zebra', true, true, window, 0, 1, 2, 3, 4, false,
false, false, false, 0, div); | |
| 59 }); | 58 }); |
| 60 } | 59 } |
| OLD | NEW |