mirror of
https://github.com/servo/servo
synced 2026-04-28 10:27:40 +02:00
21 lines
797 B
HTML
21 lines
797 B
HTML
<!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:dalcala@adobe.com" rel="author" title="David Alcala" />
|
|
<link href="mailto:mibalan@adobe.com" rel="reviewer" title="Mihai Balan" /> <!-- 2013-07-24 -->
|
|
<style type="text/css">
|
|
.green-square {
|
|
width: 100px;
|
|
height: 100px;
|
|
margin-left: 10px;
|
|
float: left;
|
|
background-color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>The test passes if you see either two green squares or one vertical green rectangle. There should be no red.</p>
|
|
<div class="green-square"></div>
|
|
<div class="green-square"></div>
|
|
|
|
</body></html> |