Closed
Bug 494340
Opened 16 years ago
Closed 16 years ago
Garbled text rendered with dynamic font face
Categories
(Firefox :: General, defect)
Tracking
()
VERIFIED
DUPLICATE
of bug 489445
People
(Reporter: findarunhere, Unassigned)
References
()
Details
User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1b4) Gecko/20090423 Firefox/3.5b4
Build Identifier: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.1b4) Gecko/20090423 Firefox/3.5b4
While using font-family defined by @font-face url, text rendered are garbled. I am experiencing this in Ubuntu 9.04.
Reproducible: Always
Steps to Reproduce:
1. Just visit https://jetpack.mozillalabs.com/ on Ubuntu 9.04 with Firefox 3.5b4.
2.
3.
Actual Results:
Garbled text unknown boxes
Expected Results:
Should be rendered properly.
Here is the HTML testcase I used. You can download fonts from
https://jetpack.mozillalabs.com/fonts/DroidSans-Bold.ttf
https://jetpack.mozillalabs.com/fonts/DroidSans.ttf
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html>
<head>
<script>
</script>
<style>
body {
font-family: 'Lucida Grande', 'Lucida Sans Unicode', Lucida, Arial, Helvetica, sans-serif;
font-family: 'DroidSans';
padding: 0px;
color:#787878;
font-size:12px;
line-height: 18px;
margin: 0 auto;
}
@font-face{
font-family: 'DroidSans';
src: url('../fonts/DroidSans.ttf') format('truetype');
}
@font-face{
font-family: 'DroidSans-Bold';
src: url('../fonts/DroidSans-Bold.ttf') format('truetype');
}
</style>
</head>
<body>
ASDFASDFds fasdfdsFSAdf sdF asDfadsfadsF
</body>
</html>
Updated•16 years ago
|
Status: UNCONFIRMED → RESOLVED
Closed: 16 years ago
Resolution: --- → DUPLICATE
Updated•16 years ago
|
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•