happy-dom
Version:
Happy DOM is a JavaScript implementation of a web browser without its graphical user interface. It includes many web standards from WHATWG DOM and HTML.
19 lines • 422 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
/**
* VTTRegion.
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/VTTRegion
*/
class VTTRegion {
id = '';
width = 100;
lines = 3;
regionAnchorX = 0;
regionAnchorY = 100;
viewportAnchorX = 0;
viewportAnchorY = 100;
scroll = 'none';
}
exports.default = VTTRegion;
//# sourceMappingURL=VTTRegion.cjs.map
;