Bug 91613

Summary: Strange text render in fixed positioned block with z-index
Product: WebKit Reporter: Ivan Vasilyev <vianomore>
Component: CSSAssignee: Nobody <webkit-unassigned>
Status: RESOLVED DUPLICATE    
Severity: Normal CC: ap, simon.fraser
Priority: P2    
Version: 528+ (Nightly build)   
Hardware: All   
OS: Unspecified   
URL: http://z.nocoffee.ru

Description Ivan Vasilyev 2012-07-18 03:49:18 PDT
Text in the fixed positioned block with z-index > 0 renders strange when there is any block with -webkit-transform css property present on the page.

I've made a little test page: http://z.nocoffee.ru


<!DOCTYPE html>
<html>
<head>
	<style>		

		div {
			position: fixed;
			z-index: 1;
		}

		p {
			-webkit-transform: rotateX(180deg);			
		}
	</style>

</head>
<body>
	<div>Some text for test that renders strange</div>	
	<p>I'm a block with -webkit-transform</p>	
</body>
</html>
Comment 1 Alexey Proskuryakov 2012-07-18 10:34:59 PDT
Looks like a dupe of 23364 to me.

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