Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the HTML-Tidy CPAN distribution.

Report information
The Basics
Id: 14668
Status: resolved
Priority: 0/
Queue: HTML-Tidy

People
Owner: Nobody in particular
Requestors: HTML::Tidy
Cc:
AdminCc:

Bug Information
Severity: Critical
Broken in: 1.06
Fixed in: (no value)



Message body is not shown because it is too large.

Message body is not shown because it is too large.

From: Paul Howarth <paul [...] city-fan.org>
On Tue Sep 20 09:43:36 2005, LGODDARD wrote: ... Show quoted text
> t/venus..............ok 1/3 > # Failed test (t/venus.t at line 34) > # Structures begin differing at: > # $got->[47] = ' <center>' > # $expected->[47] = ' <address>' > # Looks like you failed 1 test of 3.
I believe that this problem is due to recent versions of libtidy "optimising out" many of the <address>/</address> tags. I'm using the 20051026 release of tidy/libtidy and the attached patch fixes the test for me.
--- HTML-Tidy-1.06/t/venus.t 2006-03-22 11:10:13.000000000 +0000 +++ HTML-Tidy-1.06/t/venus.t 2006-03-22 11:22:54.000000000 +0000 @@ -81,24 +81,18 @@ <a href="../../General/Credits.html">Credits</a> | <a href="../../General/Feedback.html">Feedback</a> |</h4> </center> - <address> - <center> - <p> - <img src="../../WetlandGraphics/GoldbarThread.gif" width="648" height="4" align="bottom" /> - </p> - </center> - <div align="center"></div> - <address> - <center> - <address>Created for the Museums in the Classroom program sponsored by Illinois State Board of Education, the Brookfield Zoo, the Illinois State Museum., and Kildeer Countryside CCSD 96.</address> - <address> </address> - <address>Authors: Twin Groves Museums in the Classroom Team,</address> - <address>School: Twin Groves Junior High School, Buffalo Grove, Illinois 60089</address> - </center> - </address> - <address> - <center>Created: 27 June 1998- Updated: 6 October 2003</center> - </address> - </address> + <center> + <p> + <img src="../../WetlandGraphics/GoldbarThread.gif" width="648" height="4" align="bottom" /> + </p> + </center> + <div align="center"></div> + <center> + <address>Created for the Museums in the Classroom program sponsored by Illinois State Board of Education, the Brookfield Zoo, the Illinois State Museum., and Kildeer Countryside CCSD 96.</address> + <address> </address> + <address>Authors: Twin Groves Museums in the Classroom Team,</address> + <address>School: Twin Groves Junior High School, Buffalo Grove, Illinois 60089</address> + </center> + <center>Created: 27 June 1998- Updated: 6 October 2003</center> </body> </html>
Thanks, this will be in the next version.