Blame view

lib/jsdom/living/events/WheelEvent-impl.js 315 Bytes
858f2bdf5   Boyan Georgiev   fixes
1
2
3
4
5
6
7
8
9
10
11
12
  "use strict";
  
  const MouseEventImpl = require("./MouseEvent-impl").implementation;
  
  const WheelEventInit = require("../generated/WheelEventInit");
  
  class WheelEventImpl extends MouseEventImpl {}
  WheelEventImpl.defaultInit = WheelEventInit.convert(undefined);
  
  module.exports = {
    implementation: WheelEventImpl
  };