<custom-element >
<template>
<label value="🍌" src="🍌" href="🍌" data="🍌">🛒</label>
</template>
</custom-element>
In FF works fine, in Crome produces
<label xmlns="" value="🍌" src="%F0%9F%8D%8C" href="%F0%9F%8D%8C" data="🍌">🛒</label>
where src and href attributes are url endcoded.
That prevents to use src or href by DCE without decoding them first. <cem-icon src="👀">eyes</cem-icon> produces
%F0%9F%9B%92 eyes
In FF works fine, in Crome produces
where
srcandhrefattributes are url endcoded.That prevents to use
srcorhrefby DCE without decoding them first.<cem-icon src="👀">eyes</cem-icon>produces%F0%9F%9B%92 eyes