We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Does this issue occur when all extensions are disabled?: Yes
VS Code incorrectly includes type="menu" as a suggested value for <button> elements in IntelliSense, despite this:
type="menu"
<button>
<button type="
menu
IntelliSense should only suggest the three valid HTML button types:
submit
reset
button
IntelliSense incorrectly includes:
Completely remove menu from:
The text was updated successfully, but these errors were encountered:
aeschli
Successfully merging a pull request may close this issue.
Uh oh!
There was an error while loading. Please reload this page.
Does this issue occur when all extensions are disabled?: Yes
Core Issue:
VS Code incorrectly includes
type="menu"
as a suggested value for<button>
elements in IntelliSense, despite this:Steps to Reproduce:
<button type="
menu
appearing in the suggestions listExpected Behavior:
IntelliSense should only suggest the three valid HTML button types:
submit
reset
button
Actual Behavior:
IntelliSense incorrectly includes:
menu
(obsolete and invalid)Technical Documentation:
https://html.spec.whatwg.org/multipage/form-elements.html#attr-button-type
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/button#type
menu
was removed in HTML 4.0 (1997)Impact:
Requested Fix:
Completely remove
menu
from:The text was updated successfully, but these errors were encountered: