font-feature-settings-tibetan.html (828B)
1 <!DOCTYPE html> 2 <html lang="en"> 3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 4 <title>CSS Test: font-feature-settings Liga and Tibetan shaping</title> 5 <link rel="author" title="Dominik Röttsches" href="drott@chromium.org"> 6 <link rel="help" href="https://www.w3.org/TR/css-fonts-3/#font-feature-settings-prop"> 7 <link rel="match" href="font-feature-settings-tibetan-ref.html"> 8 <meta name="assert" content="Test that Tibetan shaping works with ligatures disabled."> 9 <style> 10 .letter-spacing { 11 letter-spacing: .2px; 12 } 13 14 .liga-off { 15 font-feature-settings: "liga" off; 16 } 17 </style> 18 <body> 19 <p>Test passes if the three lines below are identical.</p> 20 <section class="test" lang="bo"> 21 <p>རྒྱུ</p> 22 <p class="letter-spacing">རྒྱུ</p> 23 <p class="liga-off">རྒྱུ</p> 24 </section>