Bug 91613
Summary: | Strange text render in fixed positioned block with z-index | ||
---|---|---|---|
Product: | WebKit | Reporter: | Ivan Vasilyev <vianomore> |
Component: | CSS | Assignee: | 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 |
Ivan Vasilyev
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>
Attachments | ||
---|---|---|
Add attachment proposed patch, testcase, etc. |
Alexey Proskuryakov
Looks like a dupe of 23364 to me.
*** This bug has been marked as a duplicate of bug 23364 ***