liveview-native / liveview-native-core

Provides core language-agnostic functionality for LiveView Native across platforms

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Don't support duplicate attributes on elements

bcardarella opened this issue · comments

We originally requested a divergence from HTML where this:

<foo bar="baz" bar="qux"></foo>

would result in both attributes of similar names preserved in the element. Our needs have shifted and we should no longer permit this behavior and re-align with the expected HTML-like behavior. In HTML the first declared attribute is used and additional attributes of the same name are ignored.