UNPKG

jsdom

Version:

A JavaScript implementation of many web standards

18 lines (13 loc) 298 B
"use strict"; const HTMLMediaElementImpl = require("./HTMLMediaElement-impl").implementation; class HTMLVideoElementImpl extends HTMLMediaElementImpl { get videoWidth() { return 0; } get videoHeight() { return 0; } } module.exports = { implementation: HTMLVideoElementImpl };