1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/reftests/text/osx-font-smoothing-2-ref.html Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +<!DOCTYPE HTML> 1.5 +<!-- testcase for https://bugzilla.mozilla.org/show_bug.cgi?id=900975 --> 1.6 +<html> 1.7 +<head> 1.8 +<style type="text/css"> 1.9 +p { 1.10 + margin: 20px; 1.11 + font-family: Arial, sans-serif; 1.12 + background-color: black; 1.13 + color: white; 1.14 +} 1.15 +.smoothing-gray { 1.16 + -moz-osx-font-smoothing: grayscale; 1.17 +} 1.18 +.smoothing-auto { 1.19 + -moz-osx-font-smoothing: auto; 1.20 +} 1.21 +span { 1.22 + display: inline-block; 1.23 +} 1.24 +</style> 1.25 +</head> 1.26 +<body lang="en"> 1.27 +<p class="smoothing-auto"><span>foo</span> <span class="smoothing-gray">bar</span></p> 1.28 +</body> 1.29 +</html>