mirror of
https://github.com/servo/servo.git
synced 2025-06-24 00:54:32 +01:00
46 lines
No EOL
929 B
HTML
46 lines
No EOL
929 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:mibalan@adobe.com" rel="author" title="Mihai Balan" />
|
|
<style>
|
|
article {
|
|
font-family: Ahem;
|
|
font-size: 20px;
|
|
line-height: 1em;
|
|
color: green;
|
|
}
|
|
|
|
.float {
|
|
float: left;
|
|
width: 100px;
|
|
height: 100px;
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.green {
|
|
background: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>
|
|
Test passes if you see four green squares separated by a small horizontal space.<br />
|
|
You should see no red.
|
|
</p>
|
|
|
|
|
|
<article>
|
|
<div class="float green"></div>
|
|
<div class="float green"></div>
|
|
<div class="float">
|
|
xxxxx<br />
|
|
xxxxx<br />
|
|
xxxxx<br />
|
|
xxxxx<br />
|
|
xxxxx
|
|
</div>
|
|
<div class="float green">div>
|
|
</div></article>
|
|
|
|
|
|
</body></html> |