Summary: | [test case] link continues to the end of the document when the link text contains <wbr> | ||
---|---|---|---|
Product: | [Applications] konqueror | Reporter: | Michael Olbrich <michael.olbrich> |
Component: | khtml parsing | Assignee: | Konqueror Developers <konq-bugs> |
Status: | RESOLVED DUPLICATE | ||
Severity: | normal | ||
Priority: | NOR | ||
Version: | unspecified | ||
Target Milestone: | --- | ||
Platform: | Compiled Sources | ||
OS: | Linux | ||
Latest Commit: | Version Fixed In: | ||
Sentry Crash Report: | |||
Attachments: | testcase |
Description
Michael Olbrich
2005-03-17 14:23:34 UTC
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> |