Version: (using KDE Devel) Installed from: Compiled sources OS: Linux Whenever a <wbr> tag is included in the link text e.g.: <nobr>Foo bar <a href="http://www.kde.org">My test <wbr>link text </a>Hello test test test.</nobr> the link doesn't end after the </a> but continues until the end of the document. Links that come later in the document interrupt but don't end it. I'm not sure if <wbr> is valid at that place, but at least it shouldn't break the link.
Created attachment 10162 [details] testcase
I confirm this bug. Running KDE 3.4.0 here, GoboLinux packages. This happens a lot on GMail Basic HTML view, often turning most of the message body into a big link. I checked the html output of GMail and isolated the problem to the presence of the tag within the link. You don't even need the <nobr> tags, this will do to demonstrate the problem: <html> <body> <a href="teste.html">Hello, <wbr>this is a test</a>. Is this still a link? It shouldn't be. </body> </html> The problem, however, is a bit more general. While some tags like <br> and <img> don't affect the tag, others do. From what I tested, the problem manifests itself with unclosed block tags, such as <nobr>, <p> and <blockquote>. (Apparently, <wbr> is being treated erroneously as a block tag.) <html> <body> <a href="teste.html">Hello, <p>this is a test</a>. Is this still a link? It shouldn't be. </body> </html>
*** This bug has been marked as a duplicate of 101678 ***