diff options
Diffstat (limited to 'layout/reftests/bugs/1022481-1.html')
-rw-r--r-- | layout/reftests/bugs/1022481-1.html | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/layout/reftests/bugs/1022481-1.html b/layout/reftests/bugs/1022481-1.html new file mode 100644 index 0000000000..e9fe216a76 --- /dev/null +++ b/layout/reftests/bugs/1022481-1.html @@ -0,0 +1,36 @@ +<!DOCTYPE HTML> +<html> +<head> +<title>Simple generics test</title> +<meta charset="UTF-8"> +<style> + +body { + margin: 20px; +} + +p { + margin: 0; + line-height: 1.2; + font-size: 25px; +} + +</style> + +</head> +<body> +<p>default font</p> +<p style="font-family: serif">serif</p> +<p style="font-family: sans-serif">sans-serif</p> +<p style="font-family: monospace">monospace</p> +<p style="font-family: -moz-fixed">-moz-fixed</p> +<p style="font-family: unknown, serif">unknown, serif</p> +<p style="font-family: unknown, sans-serif">unknown, sans-serif</p> +<p style="font-family: unknown, monospace">unknown, monospace</p> +<p style="font-family: unknown, -moz-fixed">unknown, -moz-fixed</p> +<p style="font-family: unknown, serif, monospace">unknown, serif, monospace</p> +<p style="font-family: unknown, sans-serif, -moz-fixed">unknown, sans-serif, -moz-fixed</p> +<p style="font-family: unknown, monospace, serif">unknown, monospace, serif</p> +<p style="font-family: unknown, -moz-fixed, sans-serif">unknown, -moz-fixed, sans-serif</p> +</body> +</html> |