| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 class $CLASSNAME extends $SUPER implements $INTERFACE { | 5 class $CLASSNAME extends $SUPER { |
| 6 $CLASSNAME(_ptr) : super(_ptr); | 6 $CLASSNAME(EventTarget _ptr) : super(_ptr); |
| 7 $!MEMBERS | 7 $!MEMBERS |
| 8 EventListenerList get mouseWheel { | 8 EventListenerList get mouseWheel { |
| 9 if (JS('bool', '#.onwheel !== undefined', _ptr)) { | 9 if (JS('bool', '#.onwheel !== undefined', _ptr)) { |
| 10 // W3C spec, and should be IE9+, but IE has a bug exposing onwheel. | 10 // W3C spec, and should be IE9+, but IE has a bug exposing onwheel. |
| 11 return this['wheel']; | 11 return this['wheel']; |
| 12 } else if (JS('bool', '#.onmousewheel !== undefined', _ptr)) { | 12 } else if (JS('bool', '#.onmousewheel !== undefined', _ptr)) { |
| 13 // Chrome & IE | 13 // Chrome & IE |
| 14 return this['mousewheel']; | 14 return this['mousewheel']; |
| 15 } else { | 15 } else { |
| 16 // Firefox | 16 // Firefox |
| 17 return this['DOMMouseScroll']; | 17 return this['DOMMouseScroll']; |
| 18 } | 18 } |
| 19 } | 19 } |
| 20 } | 20 } |
| OLD | NEW |