summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-fonts/font-face-stretch-auto-static.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-fonts/font-face-stretch-auto-static.html')
-rw-r--r--testing/web-platform/tests/css/css-fonts/font-face-stretch-auto-static.html22
1 files changed, 22 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-fonts/font-face-stretch-auto-static.html b/testing/web-platform/tests/css/css-fonts/font-face-stretch-auto-static.html
new file mode 100644
index 0000000000..ce3c94fa2f
--- /dev/null
+++ b/testing/web-platform/tests/css/css-fonts/font-face-stretch-auto-static.html
@@ -0,0 +1,22 @@
+<!DOCTYPE html>
+<html lang="en">
+<meta charset="utf-8"/>
+<title>CSS Test: Support for font-stretch: auto in @font-face</title>
+<link rel="match" href="font-face-stretch-auto-static-ref.html">
+<link rel="help" href="https://www.w3.org/TR/css-fonts-4/#font-prop-desc" />
+<meta name="assert" content="font-stretch: auto applies initial value for non-variable fonts in @font-face descriptor">
+<style>
+ @font-face {
+ font-family: "Lato";
+ src: url('support/fonts/Lato-Medium.ttf') format('truetype');
+ font-display: swap;
+ font-stretch: auto;
+ }
+ .test {
+ font-family: "Lato";
+ font-size: 3em;
+ font-stretch: 125%;
+ }
+</style>
+
+<p class="test">text</p>