mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
29 lines
937 B
HTML
29 lines
937 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html xmlns="http://www.w3.org/1999/xhtml"><head>
|
|
<title>CSS Test: feature value matching for font-variant-alternates</title>
|
|
<link href="mailto:jdaggett@mozilla.com" rel="author" title="John Daggett" />
|
|
<style type="text/css">
|
|
@font-face {
|
|
font-family: libertine;
|
|
src: url(support/fonts/LinLibertine_Re-4.7.5.woff) format("woff");
|
|
}
|
|
body {
|
|
font-family: libertine, sans-serif;
|
|
font-size: 800%;
|
|
line-height: 1.2em;
|
|
}
|
|
|
|
div { margin: 0 20px; }
|
|
span {
|
|
font-feature-settings: "ss05"; /* crossed W */
|
|
}
|
|
|
|
</style>
|
|
</head>
|
|
<body lang="en">
|
|
<div><span id="test1">W</span> <span id="test2">W</span> <span id="test3">W</span></div>
|
|
<div><span id="test4">W</span> <span id="test5">W</span> <span id="test6">W</span></div>
|
|
<div><span id="test7">W</span> <span id="test8">W</span> <span id="test9">W</span></div>
|
|
|
|
|
|
</body></html> |