Closed
Bug 545363
Opened 15 years ago
Closed 15 years ago
CSS with transform-rotate
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 436788
People
(Reporter: mario.mancino, Unassigned)
Details
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en; rv:1.9.0.12) Gecko/20080528 Epiphany/2.22
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.2) Gecko/20100115 Firefox/3.6 (.NET CLR 3.5.30729)
I used the CCS3 transform-feature to display some text. When viewing the page with Firefox 3.6 on windows (linux is fine!) nothing did show up. When switching tabs back and forht the other tabs were dislayed instead of my page.
A simple HTML-File to reconstruct the problem:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>CSS Test</title>
<style type="text/css">
div.beta {
font-family: Courier, monospace;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
}
</style>
</head>
<body>
some text...
<div class='beta'>rotated text</div>
</body>
</html>
Reproducible: Always
Steps to Reproduce:
1. Open html-page with firefox 3.6/windows
2. switch to a different tab and back
3. move any window above firefox
Actual Results:
1. page is empty
2. the other tab should still be shown
3. artifacts show up
Expected Results:
1. page text should show
2. the original content should show
3. nothing
Comment 1•15 years ago
|
||
The problem is not the rotation. Replace Courier with lets say
"Courier New" and you can get around the bug (in this case it's
bug 436788).
Status: UNCONFIRMED → RESOLVED
Closed: 15 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•