Closed bdukes closed 7 years ago
When parsing the HtmlAttributesAsString property, the keys and values accumulate, so that when there are multiple key/value pairs, the keys and values are duplicated. For example, HtmlAttributesAsString="defer=true,async=true" yields the following:
HtmlAttributesAsString
HtmlAttributesAsString="defer=true,async=true"
defer=true deferasync=truetrue
Thanks! Have added a unit test for this now too, not sure how this hasn't been spotted before :)
When parsing the
HtmlAttributesAsString
property, the keys and values accumulate, so that when there are multiple key/value pairs, the keys and values are duplicated. For example,HtmlAttributesAsString="defer=true,async=true"
yields the following: