<!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 Reftest Reference</title>
		<link href="mailto:badea@adobe.com" rel="author" title="Catalin Badea" />
		<style>
		.blue {
			height: 60px;
			width: 100px;
			background-color: blue;
		}

		.green {
			height: 40px;
			width: 100px;
			background-color: green;
			position: relative;
			bottom: 40px;
			left: 200px;
		}
		</style>
	</head>
	<body>
		<ul>
			<li>Test passes if you see a blue rectangle and a green rectangle, from left to right in this order.</li>
			<li>The blue rectangle one the left should be taller than the green rectangle on the right.</li>
			<li>You shouldn't see any red.</li>
		</ul>
		<div class="blue"> </div>
		<div class="green"> </div>
	

</body></html>