Malo Pichot wrote:
>
> I have some problem to retrieve content from attributes when the name of
> these attributes are upper-case like : <Image Source=""... />.
>
> I test it in the last release of XXE (2.5patch2) with and without the
> upper-case. It works wel with <Image source=""... /> and not with <Image
> Source=""... />. I'm not specialist of CSS, so I don't know if the
> problem is mine or a bug in XXE.
>
It is probably a bug in XXE. As a workaround, please specify:
---
Image {
content: image(attr("Source"));
}
---
instead of:
---
Image {
content: image(attr(Source));
}
---