[Webkit-unassigned] [Bug 91613] New: Strange text render in fixed positioned block with z-index
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Wed Jul 18 03:49:18 PDT 2012
https://bugs.webkit.org/show_bug.cgi?id=91613
Summary: Strange text render in fixed positioned block with
z-index
Product: WebKit
Version: 528+ (Nightly build)
Platform: All
URL: http://z.nocoffee.ru
OS/Version: Unspecified
Status: UNCONFIRMED
Severity: Normal
Priority: P2
Component: CSS
AssignedTo: webkit-unassigned at lists.webkit.org
ReportedBy: vianomore at gmail.com
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>
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list