Files
servo/tests/wpt/css-tests/css21_dev/html4/border-right-width-applies-to-011.htm

25 lines
1008 B
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: Border-right-width 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/box.html#propdef-border-right-width">
<link rel="help" href="http://www.w3.org/TR/CSS21/box.html#border-width-properties">
<meta name="flags" content="">
<meta name="assert" content="The 'border-right-width' property applies to elements with a display of run-in.">
<style type="text/css">
div
{
border-right-style: solid;
border-right-width: 1in;
display: run-in;
height: 1in;
width: 0;
}
</style>
</head>
<body>
<p>Test passes if there is a square below.</p>
<div></div>
</body>
</html>