diff options
Diffstat (limited to 'layout/reftests/font-face/variation-format-hint-1b.html')
-rw-r--r-- | layout/reftests/font-face/variation-format-hint-1b.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/layout/reftests/font-face/variation-format-hint-1b.html b/layout/reftests/font-face/variation-format-hint-1b.html new file mode 100644 index 0000000000..627570fbca --- /dev/null +++ b/layout/reftests/font-face/variation-format-hint-1b.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.otf) format("opentype-variations"), + url(../fonts/markA.woff); +} +div { + font-family: test, serif; + font-size: 50px; + line-height: 2em; +} +</style> + +<div> +ABC +</div> |