[Htmlparser-user] parser bug...
Brought to you by:
derrickoswald
From: James M. <jmo...@uc...> - 2003-02-05 02:33:41
|
Greetings, I checked out the latest CVS version (on 02/04/2003) and saw that the fix was applied for HTMLs that have not double quotes in them. Unfortunately, I found a prior bug showing itself again The HTML below throws an index out of bounds on the word 'hello' -- it dies on the last single quote. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <script language="JavaScript" type="text/JavaScript"> // if this fails, output a 'hello' if (true) { //something good... } </script> </body> </html> Thanks! James Moliere jmo...@uc... |