Re: [Tidy-dev] 2 bugs in Tidy (fwd)

At 1:10 PM +0100 7/4/01, Dave Raggett wrote:
>---------- Forwarded message ----------
>Date: Wed, 20 Jun 2001 23:47:08 +0200
>From: Georg Engist <georg@engist.inka.de>
>To: Dave Raggett <dsr@w3.org>
>Subject: 2 bugs in Tidy
>
>Dear Mr. Raggett!
>
>Yesterday I downloaded Tidy. I have found two bugs.
>
>Tidy is an interesting program.
>
>Sincerely yours
>  Georg Engist
>
>-------------------------------------------------------------
>
>The css command "background" ends with "-url". This is wrong.
>
>Original: <body background="../../../Grafiken/Kacheln/Kachel.gif"
>bgproperties="fixed">
>
>Result:
>
> body {
>  background-url: url(../../../Grafiken/Kacheln/Kachel.gif);
> }
>
>The correct expression:
>
> body {
>  background: url(../../../Grafiken/Kacheln/Kachel.gif);
> }

Sorry I can't reproduce your problem with the current Tidy code. In fact
there is no "background-url" type text in the code. Sounds like you might
be using an older version of Tidy. The currently publically released
version is 04 Aug 00. Perhaps you could provide more details about what
platform and version of Tidy you are using.

>-------------------------------------------------------------
>
>The structure <td><a><center></center></a></td> was destroyed:
><td><a></a><div></div></td> The hyper link in the anchor is
>no more associated with the content of the center area.
>
>The original html code:
>  <td width=150><a href="Kasse.htm">
>    <center>
>      <img src="../../../Grafiken/Geschaeft/01/klein/Kasse.jpg" nosave
>border=0 width="148" height="129" alt="Mausklick auf ein Bild
>vergr&ouml;&szlig;ert das Bild.">
>    </center>
>  </a></td>
>
>Result:
>
><td width="150"><a href="Kasse.htm"></a>
><div class="c1"><img src="../../../Grafiken/Geschaeft/01/klein/Kasse.jpg"
>nosave="" border="0" width="148" height="129" alt="Mausklick auf ein Bild
>vergr&#246;&#223;ert das Bild."></div>
></td>
>
>The structure should be: <td><a><div></div></a></td>
>instead of <td><a></a><div></div></td>.

While I can reproduce your problem, I will let someone else comment on this
one.

Regards, Terry Teague

Received on Wednesday, 4 July 2001 22:43:38 UTC