HTML <IMG> tag is case sensitive

I just found out, that the tag in HTML is case sensitive.
It costed me whole afternoon and I didn’t understand why my images were not shown

_media = 'media:///servoy_blobloader?servername=....'
_html += '<TR><TD><IMG SRC="' + _media + '"></TD>'

When you put this HTML on a Servoy form, it fails. You don’t see your image.

When you change it into

_media = 'media:///servoy_blobloader?servername=....'
_html += '<TR><TD><img src="' + _media + '"></TD>'

then it works.

Is that normal?

By the way, it only went wrong in webclient, not in smart client

yes thats correct

in the webclient we use xhtml and xhtml requires that everything is lowercase. So you should if you want to contribute to the webclients output always use lowercase tags.