UNPKG

jsdom

Version:

A JavaScript implementation of many web standards

13 lines (9 loc) 401 B
"use strict"; const { mixin } = require("../../utils"); const HTMLElementImpl = require("./HTMLElement-impl").implementation; const WindowEventHandlersImpl = require("./WindowEventHandlers-impl").implementation; class HTMLBodyElementImpl extends HTMLElementImpl {} mixin(HTMLBodyElementImpl.prototype, WindowEventHandlersImpl.prototype); module.exports = { implementation: HTMLBodyElementImpl };