inlined css scripts broken since yesterday

Melchior FRANZ a8603365 at unet.univie.ac.at
Thu Jan 16 23:33:43 GMT 2003


* Melchior FRANZ -- Thursday 16 January 2003 23:59:
> * Melchior FRANZ -- Thursday 16 January 2003 23:53:
> >  khtml does finally =really= not consider any inlined css
> > (since yesterday; CVS HEAD from today afternoon).
> 
> Damn. No, it partly works. Have to find a valid test-case yet.

OK. Maybe I'm making an ass out of myself again, but well ...
If you let khtml from today render the following file, it doesn't
respect the class definitions "left" and "right", unless you remove
the comment in the general "td" definition, that is, unless there's
=any= statement in the "td".

m.   ??



<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
	<title>Testcase for Test</title>
	<style type="text/css">
		td {
			/* text-align: center; */
		}

		td.left {
			text-align: left;
			color: red;
		}

		td.right {
			text-align: right;
			color: blue;
		}
	</style>
</head>
<body>

<table border=1>
<tr><td>WWWWWWWWWWWWWWWWWWWWW</td></tr>
<tr><td class="left">left, red</td></tr>
<tr><td class="right">right, blue</td></tr>
</table>

</body>
</html>




More information about the kfm-devel mailing list