I have a jsf snippet:
<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets">
<img src="//mc.yandex.ru/watch/xxx" alt=""/>
</ui:composition>
But when I use it, the web client receives an HTML page without the empty alt attribute in the img element:
<img src="//mc.yandex.ru/watch/xxx" />
As a result, my document had a validation error (
How can I solve this problem?
source
share