Closed
Bug 593813
Opened 15 years ago
Closed 15 years ago
Ligatures don't display at all if dx/dy is used on text
Categories
(Core :: SVG, defect)
Core
SVG
Tracking
()
RESOLVED
FIXED
People
(Reporter: jwatt, Unassigned)
Details
(Keywords: testcase)
Attachments
(1 file)
|
94 bytes,
image/svg+xml
|
Details |
Ligatures don't display at all if dx/dy is used on text.
| Reporter | ||
Comment 1•15 years ago
|
||
| Reporter | ||
Comment 2•15 years ago
|
||
For me this testcase displays "oat", whereas it should display "float".
Comment 4•15 years ago
|
||
In nsSVGGlyphFrame there is this test...
if (xListCount <= 1 &&
yListCount <= 1 &&
dxList.Length() == 0 &&
dyList.Length() == 0 &&
...
dxList.Length() <= 1 and dyList.Length() <= 1 is more appropriate. Any patch would bitrot bug 333698 though and would only work for a single dx (or dy value).
Really we should disable ligatures if the text layout positions characters but that doesn't work on Windows (or Linux either I think).
Comment 5•15 years ago
|
||
Single dx, dy now work after check in for bug 333698. We have existing bugs on ligatures e.g. bug 468035
Comment 6•15 years ago
|
||
Testcase fixed by bug 333698. Any existing ligature issues would be covered by bug 563430
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•