Here's a "valid" XML:
<?xml version="1.0"?><class>>>>>>>>>>>>>>>>>>>>>>>>>>>>><abc att="da"/></class>
I have a relatively simple question: why is this XML correctly validated by virtually all possible parsers? I checked latest xml specs from w3.org https://www.w3.org/TR/2008/REC-xml-20081126/ but I cannot find anything related to this. Is this something implementation specific?
The symbol '<' cannot be used multiple times ie.
<?xml version="1.0"?><class><<abc att="da"/></class>
this XML is invalid.