Files
servo/tests/wpt/css-tests/css21_dev/html4/first-letter-selector-021.htm

26 lines
960 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: First-letter on list-style-position: inside</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
<link rel="help" href="http://www.w3.org/TR/CSS21/selector.html#first-letter">
<meta name="flags" content="may">
<meta name="assert" content="User agents may ignore ':first-letter' on list items with 'list-style-position: inside'.">
<style type="text/css">
li:first-letter
{
color: green;
}
.inside
{
list-style-position: inside;
}
</style>
</head>
<body>
<p>Test passes regardless if the letter "F" in the "Filler Text" below is green.</p>
<ul>
<li class="inside">Filler Text</li>
</ul>
</body>
</html>