From: SourceForge.net <no...@so...> - 2004-04-05 22:03:16
|
Bugs item #572154, was opened at 2002-06-21 18:21 Message generated for change (Comment added) made by fgiust You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=572154&group_id=13153 Category: Tidy functionality Group: None >Status: Closed >Resolution: Fixed Priority: 5 Submitted By: Nobody/Anonymous (nobody) >Assigned to: fabrizio giustina (fgiust) Summary: nested frameset causes infinite loop Initial Comment: A sample file that causes this is attached. ---------------------------------------------------------------------- >Comment By: fabrizio giustina (fgiust) Date: 2004-04-05 21:23 Message: Logged In: YES user_id=798060 fixed. Testcase added ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2002-06-21 22:48 Message: Logged In: NO I think the cause may be ParserImpl.java line 2633 lexer.ungetToken(); where ungetToken() is called in ParseNoFrames.parse(). I don't believe this call is necessary because when it returns to ParseHTML.parse(), it will reprocess the same token again in an endless loop. ---------------------------------------------------------------------- Comment By: Nobody/Anonymous (nobody) Date: 2002-06-21 21:56 Message: Logged In: NO This bug is not caused by a nested frameset, but rather a frame element outside of a frameset. Here's the reduced sample html code which will reproduce the bug. <HTML> <HEAD> <title>the title must exist</title> </HEAD> <frameset> </frameset> <frame> </HTML> ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=113153&aid=572154&group_id=13153 |