matthiasblaesing opened a new pull request, #5756: URL: https://github.com/apache/netbeans/pull/5756
Faced with a structure like this: "<Jm/ a=q</>>V />G>" The html lexer hit an assertion as it tried to lex "a=q" as an attribute value. The sequence "<Jm/" at first looks like the start of a tag, but that is discarded once the "/" is read. Yet the lexer state is not reset to INIT, but ISP_TAG_X. Attribute lexing assumes, that a tag was lexed first and that that information is still present, which not the case here. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected] For further information about the NetBeans mailing lists, visit: https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists
