Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
buffer committed Aug 31, 2023
1 parent c3df9f0 commit 4b51450
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions thug/DOM/W3C/HTML/HTMLVideoElement.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "")

Expand Down

0 comments on commit 4b51450

Please sign in to comment.