| Summary: | Missing input elements on https://daga.dyndns.org/login.php | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Rohan Dhruva <rohandhruva> |
| Component: | khtml parsing | Assignee: | Allan Sandfeld <kde> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | ||
| Priority: | NOR | ||
| Version First Reported In: | unspecified | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
|
Description
Rohan Dhruva
2006-06-01 09:05:17 UTC
<form><table> mess again.. Not mess. It actually looks right. <form><table> not <table><form> Okay. It is a mess. They just fuck it up using CSS instead of HTML.
The <DIV> that contains the <FORM> is styled in CSS with
.position {
margin: 0 auto;
display: table;
padding-top: 20px;
text-align: center;
}
The CSS validates at w3.org. Konqueror will display the username/password fields if "display: table;" is removed from the style sheet, but from my understanding it is a legal configuration. SVN commit 552443 by carewolf: Clean up handling of FORMs inside RenderTable's. Patch merged from WebCore and improved to also fix bug #128420 BUG: 109304 BUG: 128420 M +2 -1 html/htmlparser.cpp M +175 -174 rendering/render_table.cpp M +5 -15 rendering/render_table.h Thanks a lot for the prompt work in fixing the bug ! :) |