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

22 lines
885 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 with img preceding text</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="image">
<meta name="assert" content="First-letter selects the first letter of a block if it is not preceded by any other content on its line.">
<style type="text/css">
div:first-letter
{
color: red;
}
</style>
</head>
<body>
<p>Test passes if there is no red visible on the page.</p>
<div>
<img src="support/green15x15.png" alt="15x15 green box">Filler Text
</div>
</body>
</html>