diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /layout/reftests/font-matching/stretchmapping-reverse-ref.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-upstream.tar.xz firefox-esr-upstream.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esrupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | layout/reftests/font-matching/stretchmapping-reverse-ref.html | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/layout/reftests/font-matching/stretchmapping-reverse-ref.html b/layout/reftests/font-matching/stretchmapping-reverse-ref.html new file mode 100644 index 0000000000..2a8fde16cb --- /dev/null +++ b/layout/reftests/font-matching/stretchmapping-reverse-ref.html @@ -0,0 +1,54 @@ +<!DOCTYPE HTML> +<html> +<head> +<title>Assure OS/2 usWidthClass isn't referenced</title> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + +<style type="text/css"> + +@font-face { + font-family: fstest-full; + src: url(../fonts/csstest-widths-wd5.ttf); + font-stretch: normal; +} + +body { + margin: 50px; +} + +p.test { + font-family: fstest-full; + font-size: 24px; +} + +.fs9 { font-stretch: ultra-condensed; } +.fs8 { font-stretch: extra-condensed; } +.fs7 { font-stretch: condensed; } +.fs6 { font-stretch: semi-condensed; } +.fs5 { font-stretch: normal; } +.fs4 { font-stretch: semi-expanded; } +.fs3 { font-stretch: expanded; } +.fs2 { font-stretch: extra-expanded; } +.fs1 { font-stretch: ultra-expanded; } + +</style> + +</head> +<body> + +<p>The numbers below should appear in ascending sequence:</p> + +<p class="test"> +<span class="fs1">1</span> +<span class="fs2">2</span> +<span class="fs3">3</span> +<span class="fs4">4</span> +<span class="fs5">5</span> +<span class="fs6">6</span> +<span class="fs7">7</span> +<span class="fs8">8</span> +<span class="fs9">9</span> +</p> + +</body> +</html>
\ No newline at end of file |