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