mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
21 lines
610 B
HTML
21 lines
610 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Reftest Reference</title>
|
|
<link href="mailto:rhauck@adobe.com" rel="author" title="Rebecca Hauck">
|
|
<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 two green squares and no red.</p>
|
|
<div class="green-square"></div>
|
|
<div class="green-square"></div>
|
|
|
|
</body></html> |