481948-2.html (496B)
1 <html> 2 <head> 3 <style type="text/css"> 4 body { 5 /* try for some likely fonts that might implement the "fi" ligature */ 6 font-family: Times, Calibri, Palatino Linotype, DejaVu Serif, serif; 7 font-size: 40pt; 8 } 9 .R { 10 color: #FF0000; 11 } 12 .G { 13 color: #00FF00; 14 } 15 </style> 16 </head> 17 <!-- 18 The reference has "fi" in a single red span; the expected result is 19 NOT EQUAL, provided we successfully paint the ligature in two halves. 20 --> 21 <body> 22 <span class="R">f</span><span class="G">i</span> 23 </body> 24 </html>