Sha256: 9d71f6d3f4ad8d7c828e153d02168fb0e9d8e1005db9a28fe27ad607add7b666
Contents?: true
Size: 502 Bytes
Versions: 51
Compression:
Stored size: 502 Bytes
Contents
"use strict"; 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 };
Version data entries
51 entries across 48 versions & 3 rubygems