blob: fc7ca44af1558ccdb6cc2d7a6513c9b64cb16776 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<!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;
}
span {
display: inline-block;
}
</style>
</head>
<body lang="en">
<p class="smoothing-auto"><span>foo</span> <span class="smoothing-gray">bar</span></p>
</body>
</html>
|