servo/tests/wpt/css-tests/css-fonts-3_dev/html/font-045.htm

43 lines
No EOL
1,016 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: font - inherit keyword value</title>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
<link rel="help" href="http://www.w3.org/TR/CSS21/changes.html#q142">
<link rel="help" href="http://www.w3.org/TR/CSS21/fonts.html#font-shorthand">
<link rel="help" href="http://www.w3.org/TR/css-fonts-3/#font-prop">
<meta content="ahem invalid" name="flags">
<meta content="The inherit keyword value cannot mix with other subproperty values" name="assert">
<style type="text/css">
div
{
background-color: red;
color: white;
font: 160px/1 Ahem;
width: 4em;
}
span
{
background-color: white;
color: green;
font: 40px inherit;
}
</style>
</head>
<body>
<p>Test passes if there is a large green rectangle and <strong>no red</strong>.</p>
<div>
<span>XXXX</span>
</div>
</body>
</html>