mirror of
https://github.com/servo/servo
synced 2026-04-29 02:47:55 +02:00
25 lines
1016 B
HTML
25 lines
1016 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
<head profile="PASS PASS">
|
|
<title>CSS Test: Content with a 'attr()' function as a value selecting 'profile'</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="">
|
|
<meta name="assert" content="The 'content' property properly handles the 'attr()' function when calling the attribute 'profile'.">
|
|
<style type="text/css">
|
|
head:before
|
|
{
|
|
content: attr(profile);
|
|
color: green;
|
|
}
|
|
head
|
|
{
|
|
display: block;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if only the words "PASS PASS" appear above.</p>
|
|
</body>
|
|
</html> |