| Summary: | [site-issue] http://gulesider.no: start page is misrendered, navigation tabs gets hidden | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Børre Gaup <albbas> |
| Component: | general | 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: | |||
| Attachments: |
screenshot with konqueror of misrendered page
same page in firefox, correctly rendered |
||
|
Description
Børre Gaup
2006-07-13 05:33:51 UTC
Created attachment 16973 [details]
screenshot with konqueror of misrendered page
Created attachment 16974 [details]
same page in firefox, correctly rendered
SVN commit 568025 by ggarand:
parse 'align' attribute of iframes
BUG: 130736
M +3 -0 html_baseimpl.cpp
--- branches/KDE/3.5/kdelibs/khtml/html/html_baseimpl.cpp #568024:568025
@@ -624,6 +624,9 @@
else
removeCSSProperty(CSS_PROP_HEIGHT);
break;
+ case ATTR_ALIGN:
+ addHTMLAlignment( attr->value() );
+ break;
case ATTR_SRC:
needWidgetUpdate = true; // ### do this for scrolling, margins etc?
HTMLFrameElementImpl::parseAttribute( attr );
|