servo/tests/wpt/web-platform-tests/css/CSS2/generated-content/content-004.xht

21 lines
No EOL
935 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: Content with a url() to an image as a value</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#propdef-content" />
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#content" />
<meta name="flags" content="image" />
<meta name="assert" content="The 'content' property properly handles the 'url()' function as a value." />
<style type="text/css">
div:before
{
content: url('support/green15x15.png');
}
</style>
</head>
<body>
<p>Test passes if there is a green box below.</p>
<div></div>
</body>
</html>