summaryrefslogtreecommitdiffstats
path: root/layout/reftests/font-face/variation-format-hint-1d.html
diff options
context:
space:
mode:
Diffstat (limited to 'layout/reftests/font-face/variation-format-hint-1d.html')
-rw-r--r--layout/reftests/font-face/variation-format-hint-1d.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/font-face/variation-format-hint-1d.html b/layout/reftests/font-face/variation-format-hint-1d.html
new file mode 100644
index 0000000000..66e87f97be
--- /dev/null
+++ b/layout/reftests/font-face/variation-format-hint-1d.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+
+<style>
+@font-face {
+ font-family: test;
+ /* this should load markB if variation font support is enabled,
+ and markA otherwise */
+ src: url(../fonts/markB.woff2) format("woff2-variations"),
+ url(../fonts/markA.woff);
+}
+div {
+ font-family: test, serif;
+ font-size: 50px;
+ line-height: 2em;
+}
+</style>
+
+<div>
+ABC
+</div>