Files
setup-python/node_modules/jsdom/lib/jsdom/living/events/FocusEvent-impl.js
Danny McCormick 39c08a0eaa Initial pass
2019-06-26 21:12:00 -04:00

10 lines
291 B
JavaScript

"use strict";
const UIEventImpl = require("./UIEvent-impl").implementation;
const FocusEventInit = require("../generated/FocusEventInit");
class FocusEventImpl extends UIEventImpl {}
FocusEventImpl.defaultInit = FocusEventInit.convert(undefined);
exports.implementation = FocusEventImpl;