diff options
Diffstat (limited to 'layout/reftests/text/synthetic-bold-metrics-01-notref.html')
-rw-r--r-- | layout/reftests/text/synthetic-bold-metrics-01-notref.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/layout/reftests/text/synthetic-bold-metrics-01-notref.html b/layout/reftests/text/synthetic-bold-metrics-01-notref.html new file mode 100644 index 0000000000..47964e6f09 --- /dev/null +++ b/layout/reftests/text/synthetic-bold-metrics-01-notref.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html> +<head> +<style type="text/css"> +@font-face { + font-family: dejavu; + src: url(../fonts/dejavu-sans/DejaVuSans.ttf); +} + +p { + font: 32px dejavu; /* family with only a single weight */ +} + +.test { + color: white; /* hide the text, we're only comparing metrics */ +} +</style> +</head> +<body> +<p>AbcdefghijklmnopqrstuvwxyZ</p> +<p>A<span class="test">bcdefghijklmnopqrstuvwxy</span>Z</p> +</body> +</html> |