mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27 lines
509 B
HTML
27 lines
509 B
HTML
|
<!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>
|