On Wed, Jul 11, 2012 at 09:02:31AM +0000, Christian Weisgerber wrote: > <[email protected]> wrote: > > > This seems to be a 'known' FF bug and other browser work for me: > > https://bugzilla.mozilla.org/show_bug.cgi?id=718016 > > It's not clear to me where Fx goes wrong here, given that the "clean" > font does exist, something the commenters in the Bugzilla entry > appear to be unaware of.
It fails to choose the fonts in order (required) see testcase below. Others, e.g. Webkit based browsers handle this correctly. <!DOCTYPE html> <html> <title>clean</title> <body> <p style="font:13px/1.539 helvetica;">helvetica</p> <p style="font:13px/1.539 arial;">arial</p> <p style="font:13px/1.539 clean;">clean</p> <p style="font:13px/1.539 sans-serif;">sans-serif</p> <hr /> <p style="font:13px/1.539 helvetica,arial,clean,sans-serif;">20minutes.fr style</p> <p style="font:13px/1.539 helvetica,arial,sans-serif;">20minutes.fr style without clean</p> </body> </html>
