Skip to content
This repository was archived by the owner on Dec 19, 2018. It is now read-only.

Unquoted TagHelper attribute values with = in their value cause Debug.Assert failure. #698

Closed
NTaylorMullen opened this issue Feb 20, 2016 · 3 comments
Assignees
Milestone

Comments

@NTaylorMullen
Copy link
Contributor

If we have a TagHelper.

<myth name=something=value key="@value" />

You get a debug assert here.

@dougbu
Copy link
Member

dougbu commented Feb 20, 2016

@NTaylorMullen your example is invalid. Is this about catching the HTML syntax violation earlier?

The HTML 5 spec says unquoted attribute values:

must not contain any literal space characters, any U+0022 QUOTATION MARK characters ("), U+0027 APOSTROPHE characters ('), "=" (U+003D) characters, "<" (U+003C) characters, ">" (U+003E) characters, or U+0060 GRAVE ACCENT characters (`), and must not be the empty string.

@NTaylorMullen
Copy link
Contributor Author

@dougbu It's definitely invalid, however it shouldn't crash the parser 😄. Instead of Debug.Asserting we should be logging an error to the ErrorSink.

@dougbu
Copy link
Member

dougbu commented Feb 20, 2016

Well, it won't crash the parser in release mode 😈

Thanks for the clarification.

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

No branches or pull requests

4 participants