| /* FeatureTest.ttf is a small font for testing OpenType features. |
| * - The black box glyph which is associated with 'W', 'e', 'b', 'K', 'i' and 't'. |
| * - A discretionary ligature glyph of 'WebKit'. |
| src: url(resources/FeatureTest.ttf); |
| -webkit-font-feature-settings: 'dlig'; |
| -webkit-font-feature-settings: 'dlig' 0; |
| if (window.layoutTestController) |
| window.layoutTestController.waitUntilDone(); |
| if (window.layoutTestController) |
| layoutTestController.notifyDone(); |
| <body onload="setTimeout(test, 300)"> |
| <p>Test for font-feature-settings property. The first word of the following three words should be displayed like "WebKit", while others should be displayed as black boxes.</p> |
| <div class="dligOn">WebKit</div> |
| <div class="dligOff">WebKit</div> |
| <div class="dligNone">WebKit</div> |