Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Gecko Bug 1346261] Add some WPT reftests for font-language-override behavior. #24111

Merged
merged 1 commit into from Jun 12, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
27 changes: 27 additions & 0 deletions css/css-fonts/font-language-override-01-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" 0;
}
</style>
</head>
<body>
<p>Test passes if the "fi" below does NOT form a ligature:
<div class=ref>fi</div>
</body>
</html>
31 changes: 31 additions & 0 deletions css/css-fonts/font-language-override-01.html
@@ -0,0 +1,31 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>CSS Test: font-language-override</title>
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com"/>
<link rel="help" href="https://drafts.csswg.org/css-fonts/#font-language-override-prop"/>
<link rel="match" href="font-language-override-01-ref.html"/>
<meta name="assert" content="the specified OpenType language system should be used"/>
<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;
}
.test {
font-language-override: "TRK";
}
</style>
</head>
<body>
<p>Test passes if the "fi" below does NOT form a ligature:
<div class=test>fi</div>
</body>
</html>
27 changes: 27 additions & 0 deletions css/css-fonts/font-language-override-02-notref.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;
}
.notref {
font-feature-settings: "liga" 0;
}
</style>
</head>
<body>
<p>Test passes if the "fi" below DOES form a ligature:
<div class=notref>fi</div>
</body>
</html>
27 changes: 27 additions & 0 deletions 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>
32 changes: 32 additions & 0 deletions css/css-fonts/font-language-override-02.html
@@ -0,0 +1,32 @@
<!DOCTYPE HTML>
<html lang="tr">
<head>
<meta charset="utf-8"/>
<title>CSS Test: font-language-override</title>
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com"/>
<link rel="help" href="https://drafts.csswg.org/css-fonts/#font-language-override-prop"/>
<link rel="match" href="font-language-override-02-ref.html"/>
<link rel="mismatch" href="font-language-override-02-notref.html"/>
<meta name="assert" content="the specified OpenType language system should be used"/>
<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;
}
.test {
font-language-override: "DEU";
}
</style>
</head>
<body>
<p>Test passes if the "fi" below DOES form a ligature:
<div class=test>fi</div>
</body>
</html>
31 changes: 31 additions & 0 deletions css/css-fonts/font-language-override-03.html
@@ -0,0 +1,31 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>CSS Test: font-language-override</title>
<link rel="author" title="Jonathan Kew" href="mailto:jkew@mozilla.com"/>
<link rel="help" href="https://drafts.csswg.org/css-fonts/#font-language-override-prop"/>
<link rel="match" href="font-language-override-02-ref.html"/>
<meta name="assert" content="the specified OpenType language system should be used"/>
<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;
}
.test {
font-language-override: "trk"; /* NOT the tag for Turkish */
}
</style>
</head>
<body>
<p>Test passes if the "fi" below DOES form a ligature:
<div class=test>fi</div>
</body>
</html>