diff options
Diffstat (limited to 'layout/reftests/font-face/load-badfullname-ref.html')
-rw-r--r-- | layout/reftests/font-face/load-badfullname-ref.html | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/layout/reftests/font-face/load-badfullname-ref.html b/layout/reftests/font-face/load-badfullname-ref.html new file mode 100644 index 0000000000..c422aacc3c --- /dev/null +++ b/layout/reftests/font-face/load-badfullname-ref.html @@ -0,0 +1,35 @@ +<!DOCTYPE HTML> +<html> +<head> +<title>Test of fonts with funky fullnames</title> +<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> + +<style type="text/css"> + +@font-face { + font-family: test; + src: url(../fonts/markA.ttf); +} + +body { + margin: 50px; + font-size: 12pt; + font-family: Gill Sans, Futura, sans-serif; +} + +p.test1 { font-size: 48pt; font-family: test, Futura, sans-serif; } +p.test2 { font-size: 48pt; font-family: test, Futura, sans-serif; } + +</style> + +</head> +<body> + +<p>Letter A should <strong>not</strong> appear below:</p> + +<p class="test1">A</p> + +<p class="test2">A</p> + +</body> +</html>
\ No newline at end of file |