Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-fonts/font-feature-settings-descriptor-02.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html lang="en">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>CSS Test: font-feature-settings descriptor</title>
<link rel="author" title="Sejal Anand" href="mailto:sejalanand@microsoft.com">
<link rel="match" href="font-feature-settings-descriptor-02-ref.html">
<meta name="assert" content="Ligature features should be handled with font-feature-settings defined as font-face rule.">
<style>
@font-face {
font-family: "liga";
src: url('support/fonts/LigatureSymbolsWithSpaces.woff');
font-feature-settings: "liga" off;
}
.ligaOFF {
font-family: liga;
}
</style>
<body>
<p>Test passes if below line does not have a graph symbol.</p>
<div class="ligaOFF">
<span>This paragraph demonstrates the liga descriptor disabled through the @font-face rule.</span>
</div>
</body>
</html>