I am just curious, in MXML many tags are capitalized(eg: < Label /> ). I know this is because the node name is in relation to the class name the node represents and by convention classes are capitalized. But one of the rules of XML is that all node names be lowercase. So does this mean MXML is invalid XML?
Share
It is not a rule of XML that node names must be lowercase; it is merely convention. Therefore MXML is still valid as XML.
XML is case-sensitive though, so
<Lable />is not the same element type as<lable />