diff options
Diffstat (limited to 'layout/reftests/font-face/load-badchecksum.html')
-rw-r--r-- | layout/reftests/font-face/load-badchecksum.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/layout/reftests/font-face/load-badchecksum.html b/layout/reftests/font-face/load-badchecksum.html new file mode 100644 index 0000000000..22ee060eea --- /dev/null +++ b/layout/reftests/font-face/load-badchecksum.html @@ -0,0 +1,32 @@ +<!DOCTYPE HTML> +<html> +<head> + <title>Checksums for downloadable fonts</title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + + <style type="text/css"> + body { margin: 50px; font-size: 24px; } + + @font-face { + font-family: VeraBadChecksum; + src: url(../fonts/VeraBd.ttf); + } + + @font-face { + font-family: VeraGoodChecksum; + src: url(../fonts/VeraBd-validchecksum.ttf); + } + + .verabad { font-family: VeraBadChecksum, Futura, sans-serif; } + .veragood { font-family: VeraGoodChecksum, Futura, sans-serif; } + + </style> + + <script type="text/javascript"> + </script> + +</head> +<body> +<p class="verabad">Fonts load with or without correct head table checksums</p> +</body> +</html>
\ No newline at end of file |