Files
servo/tests/wpt/css-tests/css21_dev/html4/before-after-002.htm

29 lines
986 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: Before, after is included in formatting changes</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
<link rel="help" href="http://www.w3.org/TR/CSS21/generate.html#before-after-content">
<meta name="flags" content="">
<meta name="assert" content="Generated content is included in any formatting changes made to an element.">
<style type="text/css">
div
{
border: solid;
color: green;
}
div:before
{
content: 'PASS ';
}
div:after
{
content: 'PASS';
}
</style>
</head>
<body>
<p>Test passes if the words "PASS PASS" appear in green inside the box.</p>
<div></div>
</body>
</html>