diff options
Diffstat (limited to 'testing/web-platform/tests/css/css-fonts/font-language-override-02-ref.html')
-rw-r--r-- | testing/web-platform/tests/css/css-fonts/font-language-override-02-ref.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-fonts/font-language-override-02-ref.html b/testing/web-platform/tests/css/css-fonts/font-language-override-02-ref.html new file mode 100644 index 0000000000..77154ed49a --- /dev/null +++ b/testing/web-platform/tests/css/css-fonts/font-language-override-02-ref.html @@ -0,0 +1,27 @@ +<!DOCTYPE HTML> +<html lang="en"> +<head> +<meta charset="utf-8"/> +<title>CSS Test reference</title> +<style> +@font-face { + font-family: Libertine; + src: url(support/fonts/LinLibertine_Re-4.7.5.woff); +} +body { + font-family: sans-serif; +} +div { + margin: 1em; + font: 32px Libertine; +} +.ref { + font-feature-settings: "liga" 1; +} +</style> +</head> +<body> +<p>Test passes if the "fi" below DOES form a ligature: +<div class=ref>fi</div> +</body> +</html> |