| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library wheel_event_test; | 5 library wheel_event_test; |
| 6 import '../../pkg/unittest/lib/unittest.dart'; | 6 import '../../pkg/unittest/lib/unittest.dart'; |
| 7 import '../../pkg/unittest/lib/html_config.dart'; | 7 import '../../pkg/unittest/lib/html_config.dart'; |
| 8 import 'dart:html'; | 8 import 'dart:html'; |
| 9 | 9 |
| 10 | 10 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 29 } | 29 } |
| 30 | 30 |
| 31 test('wheelEvent', () { | 31 test('wheelEvent', () { |
| 32 var element = new DivElement(); | 32 var element = new DivElement(); |
| 33 element.on.mouseWheel.add(expectAsync1((e) { | 33 element.on.mouseWheel.add(expectAsync1((e) { |
| 34 expect(e.screenX, 100); | 34 expect(e.screenX, 100); |
| 35 expect(e.deltaX, 0); | 35 expect(e.deltaX, 0); |
| 36 expect(e.deltaY, 240); | 36 expect(e.deltaY, 240); |
| 37 })); | 37 })); |
| 38 var event = new WheelEvent(wheelEvent, | 38 var event = new WheelEvent(wheelEvent, |
| 39 window, | 39 deltaX: 0, |
| 40 0, | 40 deltaY: 240, |
| 41 240, | 41 screenX: 100); |
| 42 0, | |
| 43 100, | |
| 44 200, | |
| 45 10, | |
| 46 20, | |
| 47 0); | |
| 48 element.$dom_dispatchEvent(event); | 42 element.$dom_dispatchEvent(event); |
| 49 }); | 43 }); |
| 50 | 44 |
| 51 test('wheelEvent Stream', () { | 45 test('wheelEvent Stream', () { |
| 52 var element = new DivElement(); | 46 var element = new DivElement(); |
| 53 element.onMouseWheel.listen(expectAsync1((e) { | 47 element.onMouseWheel.listen(expectAsync1((e) { |
| 54 expect(e.screenX, 100); | 48 expect(e.screenX, 100); |
| 55 expect(e.deltaX, 0); | 49 expect(e.deltaX, 0); |
| 56 expect(e.deltaY, 240); | 50 expect(e.deltaY, 240); |
| 57 })); | 51 })); |
| 58 var event = new WheelEvent(wheelEvent, | 52 var event = new WheelEvent(wheelEvent, |
| 59 window, | 53 deltaX: 0, |
| 60 0, | 54 deltaY: 240, |
| 61 240, | 55 screenX: 100); |
| 62 0, | |
| 63 100, | |
| 64 200, | |
| 65 10, | |
| 66 20, | |
| 67 0); | |
| 68 element.$dom_dispatchEvent(event); | 56 element.$dom_dispatchEvent(event); |
| 69 }); | 57 }); |
| 70 } | 58 } |
| OLD | NEW |