From 4b514507583a9d6f7160ff08106f7ee115fc7c61 Mon Sep 17 00:00:00 2001 From: Angelo Dell'Aera Date: Thu, 31 Aug 2023 16:36:17 +0200 Subject: [PATCH] Fix typo --- thug/DOM/W3C/HTML/HTMLVideoElement.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/thug/DOM/W3C/HTML/HTMLVideoElement.py b/thug/DOM/W3C/HTML/HTMLVideoElement.py index 3e76322f06..b5ffed8c07 100644 --- a/thug/DOM/W3C/HTML/HTMLVideoElement.py +++ b/thug/DOM/W3C/HTML/HTMLVideoElement.py @@ -11,8 +11,8 @@ class HTMLVideoElement(HTMLMediaElement): width = attr_property("width", int, default = 0) height = attr_property("height", int, default = 0) - videoWidth = attr_property("width", int, default = 0) - videoHeight = attr_property("height", int, default = 0) + videoWidth = attr_property("videoWidth", int, default = 0) + videoHeight = attr_property("videoHeight", int, default = 0) playsInline = attr_property("playsInline", bool, default = False) poster = attr_property("poster", default = "")