Sha256: fc12cfc5bea8bdf79f18f3ff435d235d02e3006a243767997acf3cb23dd7ba24
Contents?: true
Size: 490 Bytes
Versions: 51
Compression:
Stored size: 490 Bytes
Contents
"use strict"; const { mixin } = require("../../utils"); const HTMLElementImpl = require("./HTMLElement-impl").implementation; const WindowEventHandlersImpl = require("./WindowEventHandlers-impl").implementation; class HTMLBodyElementImpl extends HTMLElementImpl { constructor(...args) { super(...args); this._proxyWindowEventsToWindow(); } } mixin(HTMLBodyElementImpl.prototype, WindowEventHandlersImpl.prototype); module.exports = { implementation: HTMLBodyElementImpl };
Version data entries
51 entries across 48 versions & 3 rubygems