Jagged fonts (test case attached) in exported pages from InDesign
Categories
(Core :: Graphics: Text, defect, P3)
Tracking
()
People
(Reporter: yoasif, Unassigned)
Details
Attachments
(5 files)
Originally reported in: https://www.reddit.com/r/firefox/comments/fu608d/blurred_font/
Hey, I have a couple of .html pages which seem to have some render issues in Firefox. There are no troubles with the font in Chrome, Edge or even Internet Explorer ... actually it's just Firefox.
See screenshots.
Another user comments:
The problem seems to be with -webkit-perspective and transform: scale();.
Removing -webkit-perspective or setting it to 0, none or over 2730 and the text renders correctly.
<body>
<div style="perspective: 1px;">
<div style="transform: scale(0.95);">
<p><span style="font-size: 20px;">The quick brown fox jumps over the lazy dog.</span></p>
</div>
<div>
<p style="transform: scale(0.95);"><span style="font-size: 20px;">The quick brown fox jumps over the lazy dog.</span></p>
</div>
</div>
</body>
In above reduced test I can also fix it by moving the
transform: scale();
to<p>
.
Reporter | ||
Comment 1•5 years ago
|
||
Reporter | ||
Comment 2•5 years ago
|
||
Reporter | ||
Updated•5 years ago
|
Comment 3•5 years ago
|
||
I'm guessing this is probably related to the use of transforms in the document, so that the text is actually rendered at a very different size from the nominal "font size" being used.
Reporter | ||
Comment 4•5 years ago
|
||
Adding a smaller testcase.
Comment 5•5 years ago
|
||
Asif, can we get the "about:support" info from the reporters?
I loaded the minimal.html in FF Nightly on WR and I'm not seeing any issues.
Reporter | ||
Comment 6•5 years ago
|
||
Reporter | ||
Updated•5 years ago
|
Comment 7•5 years ago
|
||
Because this bug's Severity has not been changed from the default since it was filed, and it's Priority is P3
(Backlog,) indicating it has been triaged, the bug's Severity is being updated to S3
(normal.)
Description
•