You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
deno-dom will try to follow the HTML standard, and HTML attributes must always have a value even if it's empty. The parser (just like any browser HTML parser) will parse them as a shorthand for attributes with an empty string value. Setting them from the DOM API will always require a string value even if that value is an empty string because that is what the HTML DOM API requires.
Can't find a way to construct a node like
<option selected>
as opposed to<option selected="">
. Is that an option I missed?The text was updated successfully, but these errors were encountered: