blob: 6861863c12e2fe7efc434698be81110a0ba30d94 [file] [log] [blame]
<!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: Outline-color applied to element with display run-in</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/" />
<link rel="help" href="http://www.w3.org/TR/CSS21/ui.html#propdef-outline-color" />
<link rel="help" href="http://www.w3.org/TR/CSS21/ui.html#dynamic-outlines" />
<meta name="flags" content="" />
<meta name="assert" content="The 'outline-color' property applies to elements with a display of run-in." />
<style type="text/css">
div
{
height: 1in;
display: run-in;
outline-color: blue;
outline-style: solid;
outline-width: 10px;
width: 1in;
}
</style>
</head>
<body>
<p>Test passes if the box below is blue.</p>
<div></div>
</body>
</html>