added msising attributes on the option Element. Tests are all passing now

This commit is contained in:
Fabio Pliger
2024-05-07 14:13:32 -05:00
parent 7c1a0d115e
commit 4c20406e01

View File

@@ -640,6 +640,11 @@ class option(TextElementBase):
tag = "option"
disabled = JSProperty("value")
label = JSProperty("label")
selected = JSProperty("selected")
value = JSProperty("value")
class output(TextElementBase):
"""Ref: https://developer.mozilla.org/en-US/docs/Web/HTML/Element/output"""