| Summary: | Menu doesn't display or work properly | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | kim Lux <lux> | 
| Component: | khtml | Assignee: | Konqueror Bugs <konqueror-bugs-null> | 
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | unspecified | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| 
        
          Description
        
        
          kim Lux
        
        
        
        
          2006-02-03 22:37:15 UTC
        
       OK, I have a preliminary fix that makes following links work, but I need to testcase stuff a bit to make sure I get the details right/avoid similar bugs, and still have to figure out what's up with the dot. SVN commit 505644 by orlovich:
Find frame-related stuff by name as well, makes menu in
#121326 function (but it still looks odd)
CCBUG:121326
 M  +3 -0      html_miscimpl.cpp  
--- branches/KDE/3.5/kdelibs/khtml/html/html_miscimpl.cpp #505643:505644
@@ -198,6 +198,9 @@
         case ID_OBJECT:
         case ID_SELECT:
         case ID_TEXTAREA:
+        case ID_FRAME:
+        case ID_IFRAME:
+        case ID_FRAMESET:
             checkName = true;
             break;
         default:
OK, the rendering funkyness is actually a site bug --- they send us the version of the menu which relies on IE's brokeness with CSS. If you spoof as mozilla, they'll look fine (since they'll send in a standard-compliant version) |