Bug 91613 - Strange text render in fixed positioned block with z-index
Summary: Strange text render in fixed positioned block with z-index
Status: RESOLVED DUPLICATE of bug 23364
Alias: None
Product: WebKit
Classification: Unclassified
Component: CSS (show other bugs)
Version: 528+ (Nightly build)
Hardware: All Unspecified
: P2 Normal
Assignee: Nobody
URL: http://z.nocoffee.ru
Keywords:
Depends on:
Blocks:
 
Reported: 2012-07-18 03:49 PDT by Ivan Vasilyev
Modified: 2012-07-18 10:34 PDT (History)
2 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
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 ***