-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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
Self closing field should be ignored for tags that aren't self closing per spec #917
Comments
@EasonShi, what would you expect the output to be? |
Actually I looked at this the other day but forgot to add my notes. The spec and Chrome will ignore the self-closing flag. (So it would parse as Need to check what impact that has as a behavior change. |
Are there any news when this is going to be fixed? |
I am thinking of addressing this by renovating how we hold properties in Tags, and allow configuration of self-closing / void tags. And then moving the HTML default back into spec. |
Planning on changing this to align to the spec once #2285 Custom Tags is done |
example
<a />content</a>
Parsed into
<a></a>content
The text was updated successfully, but these errors were encountered: