| Summary: | text-align inheritance problem in strict (xhtml-1.0) mode | ||
|---|---|---|---|
| Product: | [Applications] konqueror | Reporter: | Yves Glodt <yg> |
| Component: | khtml | Assignee: | Konqueror Bugs <konqueror-bugs-null> |
| Status: | RESOLVED FIXED | ||
| Severity: | normal | CC: | maksim |
| Priority: | NOR | ||
| Version First Reported In: | 3.4.1 | ||
| Target Milestone: | --- | ||
| Platform: | Debian testing | ||
| OS: | Linux | ||
| Latest Commit: | Version Fixed/Implemented In: | ||
| Sentry Crash Report: | |||
| Attachments: | Testcase | ||
|
Description
Yves Glodt
2005-06-05 01:03:06 UTC
Created attachment 11329 [details]
Testcase
I'm not a CSS expert, but I agree with your assessment. And I can reproduce it (trunk 414026). SVN commit 576076 by ggarand:
text-align of tables should only be reset in quirk mode.
BUG: 106812
M +0 -1 html4.css
M +1 -0 quirks.css
--- branches/KDE/3.5/kdelibs/khtml/css/html4.css #576075:576076
@@ -170,7 +170,6 @@
table {
display: table;
border-collapse: separate;
- text-align: -khtml-auto;
border-spacing: 2px;
-khtml-flow-mode: -khtml-around-floats;
box-sizing: border-box;
--- branches/KDE/3.5/kdelibs/khtml/css/quirks.css #576075:576076
@@ -24,6 +24,7 @@
color: -khtml-text;
font-size: medium;
empty-cells: hide;
+ text-align: -khtml-auto;
}
LAYER {
|