@applitools/jsdom
Version:
jsdom without canvas 19.0.0
18 lines (14 loc) • 502 B
JavaScript
;
const { mixin } = require("../../utils");
const HTMLElementImpl = require("./HTMLElement-impl").implementation;
const WindowEventHandlersImpl = require("./WindowEventHandlers-impl").implementation;
class HTMLFrameSetElementImpl extends HTMLElementImpl {
constructor(...args) {
super(...args);
this._proxyWindowEventsToWindow();
}
}
mixin(HTMLFrameSetElementImpl.prototype, WindowEventHandlersImpl.prototype);
module.exports = {
implementation: HTMLFrameSetElementImpl
};