| Summary: | Tables in RTL HTML pages are cut off | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Munzir Taha Obeid <munzirtaha> |
| Component: | general | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Ubuntu | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | Test case as provided in bug description. | ||
Created attachment 19244 [details]
Test case as provided in bug description.
I can confirm this bug on KDE 3.5.5 / Kubuntu 6.10. |
Version: (using KDE KDE 3.5.3) Installed from: Ubuntu Packages OS: Linux Tables in RTL HTML are cut off from their left side if the text is big enough to fill the page. What should happen is as far as I can guess is to have a horizontal scrollbar. Here is a basic code that demonstrates the problem. Just Zoom in the page (Ctrl++) and there is not fourth cell! <html dir="rtl"> <head></head> <body> <table> <tr> <td>First_Row_First_Cell</td> <td>First_Row_Second_Cell</td> <td>First_Row_Third_Cell</td> <td>First_Row_Fourth_Cell</td> </tr> </table> </body> </html>