Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HTMLOptionElement.defaultSelected deviates from standard APIs #185

Open
jespertheend opened this issue Jan 14, 2025 · 2 comments
Open

HTMLOptionElement.defaultSelected deviates from standard APIs #185

jespertheend opened this issue Jan 14, 2025 · 2 comments

Comments

@jespertheend
Copy link

const optionEl = document.createElement("option");
optionEl.defaultSelected = true;
console.log(optionEl.outerHTML);

In browsers the above outputs <option selected=""></option>, but in Deno I get <option></option>

@jespertheend
Copy link
Author

Fwiw, a workaround is to use optionEl.setAttribute("selected", ""); instead.

@jespertheend
Copy link
Author

Seems like HTMLInputElement.defaultChecked is affected as well

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant