jsdom
Version:
A JavaScript implementation of many web standards
13 lines (9 loc) • 413 B
JavaScript
;
const { mixin } = require("../../utils");
const HTMLElementImpl = require("./HTMLElement-impl").implementation;
const WindowEventHandlersImpl = require("./WindowEventHandlers-impl").implementation;
class HTMLFrameSetElementImpl extends HTMLElementImpl {}
mixin(HTMLFrameSetElementImpl.prototype, WindowEventHandlersImpl.prototype);
module.exports = {
implementation: HTMLFrameSetElementImpl
};