| Summary: | CSSStyleDeclarationImpl::setProperty -> no update of rendering | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | sh |
| Component: | khtml | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED DUPLICATE | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Gentoo Packages | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | Testcase attached | ||
Missing redraw -> khtml bug, not KJS. Retitling and reassigning. hi, thx, but sometimes it's really hard to see which component is raising the errors :( regards, \sh Created attachment 7814 [details]
Testcase attached
|
Version: (using KDE KDE 3.0.99) Installed from: Gentoo Packages Compiler: gcc/g++ 3.2 optimized for athlon-xp OS: Linux Hi, so this is the html + js source: -------------------------------------- <html><head> <style> .text { background-color:white; color:#000000; } </style> </head> <body> <table> <tr class="text" onmouseover="javascript:style.background='#c0c0c0'" onmouseout="javascript:style.background='white'"> <td>bla</td><td>blubb</td><td>fasel</td><td><a href="http://www.kde.org/">Kde homepage</a></td> </tr> <tr class="text" onmouseover="javascript:style.background='#c0c0c0'" onmouseout="javascript:style.background='white'"> <td>blubb</td><td>bla</td><td>fasel2</td><td><a href="http://www.kde.org/">Kde homepage whatever</a></td> </tr> </table> </body> </html> ---------------------------------------- Normally, this test source is changing the table row colors, if the mouse is over the row then it must be changed to dark gray, if the mouse is out then it must be changed back to white. Strange is, konqueror in kde 3.0.4 reacted the right way, konqueror in kde 3.1rc3 not. regards, \sh PS: mozilla is doing it allright, that is the reference.