blob: 3cf80f8d71dc576ca53b9582a06b1852b5edfcd9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!DOCTYPE HTML>
<!-- testcase for https://bugzilla.mozilla.org/show_bug.cgi?id=900975 -->
<html>
<head>
<style type="text/css">
p {
margin: 20px;
font-family: Arial, sans-serif;
background-color: black;
color: white;
}
.smoothing-gray {
-moz-osx-font-smoothing: grayscale;
}
.smoothing-auto {
-moz-osx-font-smoothing: auto;
}
</style>
</head>
<body lang="en">
<p class="smoothing-auto"><span>foo</span> <span>bar</span></p>
</body>
</html>
|