| Index: tools/dom/templates/html/impl/impl_WheelEvent.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_WheelEvent.darttemplate b/tools/dom/templates/html/impl/impl_WheelEvent.darttemplate
|
| index 6fc9d5a2d8b0bce7f72598fba155f9498dca0989..9f0600be7f1ff8caf7a4aeea17e70441dc9ebdc4 100644
|
| --- a/tools/dom/templates/html/impl/impl_WheelEvent.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_WheelEvent.darttemplate
|
| @@ -64,6 +64,8 @@ $if DART2JS
|
| screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey,
|
| metaKey, button, relatedTarget, axis);
|
| } else {
|
| + // Chrome does an auto-convert to pixels.
|
| + deltaY = deltaY ~/ 120;
|
| $else
|
| // Dartium always needs these flipped because we're using the legacy
|
| // _initWebKitWheelEvent instead of the more modern WheelEvent constructor
|
|
|