font-variant-ligatures-11-ref.html (791B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 4 <title>CSS Test: font-variant-ligatures: none is not equivalent to rlig off.</title> 5 <link rel="author" title="Chris Lilley" href="chris@w3.org"> 6 <style> 7 .test { 8 font-family: serif; 9 font-size: 3em; 10 line-height: 1.1; 11 } 12 </style> 13 <body> 14 <p>Test passes if the first line shows a lam-alef ligature (<span lang="ar">لا</span>) 15 and the second shows an initial lam, final alef (<span lang="ar">ﻟ‌ﺎ</span>) 16 which is <em>normally incorrect</em>.</p> 17 <!-- presentation forms used here to show the unligated forms --> 18 <section class="test"> 19 <p class="high"><span lang="ar">لا</span> </p> 20 <p class="low"><span lang="ar">ﻟ‌ﺎ</span></p> 21 </section>