Hyphenated ligatures display wrong
Categories
(Core :: Graphics: Text, defect)
Tracking
()
People
(Reporter: mark, Unassigned)
Details
Attachments
(2 files)
User Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Firefox/60.0
Steps to reproduce:
Layout text to be hyphenated, make the box narrow enough to actually force hyphenation, use words with lots of lower-case double F's.
Actual results:
Double F's are displayed as ligatures. Whenever a hyphen goes between two F's, Firefox splits the ligature over two lines, displaying part of the first F at the beginning of the next line.
Expected results:
If hyphenation occurs, two individual F characters should be used, not the first and second half of a double-F-ligature.
Reporter | ||
Comment 1•6 years ago
|
||
Visibility of the error depends on the font used. In Firefox 60 on my Debian/GNU Linux 9 the following apply:
No font-family set: /* error visible */
font-family: serif; /* error visible */
font-family: sans; /* error visible */
font-family: arial; /* error not visible */
Reporter | ||
Comment 2•6 years ago
|
||
Updated•6 years ago
|
Comment 3•6 years ago
|
||
This is a known issue. Currently, text shaping (including things like ligatures) occurs before line-breaking (which it must, in order to measure the shaped text); but we don't re-shape after breaking the line.
Description
•