Bug 87724 - Text render twice with CSS first-letter pseudo element
Summary: Text render twice with CSS first-letter pseudo element
Status: RESOLVED DUPLICATE of bug 76078
Alias: None
Product: konqueror
Classification: Applications
Component: khtml (show other bugs)
Version: unspecified
Platform: Gentoo Packages Linux
: NOR normal
Target Milestone: ---
Assignee: Konqueror Developers
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2004-08-22 02:59 UTC by Hugo Parente Lima
Modified: 2004-08-22 17:10 UTC (History)
0 users

See Also:
Latest Commit:
Version Fixed In:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Hugo Parente Lima 2004-08-22 02:59:45 UTC
Version:            (using KDE KDE 3.3.0)
Installed from:    Gentoo Packages
Compiler:          GCC 3.3.3 
OS:                Linux

Try the HTML Code above, The text "Hi, I'm another CSS konqueror bug." is rendered twice, but if I comment the CSS attribute "text-transform: uppercase;" it's render ok.



<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
  <head>
    <title>Bug test</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/>
	<style type="text/css">
	
	p:first-letter {
		color: blue;
		float: left;
		text-transform: uppercase;
	}
	
	</style>
  </head>
  <body>

  <p>Hi, I'm another CSS konqueror bug.</p>
  
  </body>
</html>
Comment 1 Stephan Kulow 2004-08-22 17:10:47 UTC

*** This bug has been marked as a duplicate of 76078 ***