mirror of
https://github.com/servo/servo
synced 2026-05-13 18:37:30 +02:00
36 lines
698 B
HTML
36 lines
698 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>CSS Reftest Reference</title>
|
|
<link rel="author" title="Mihai Balan" href="mailto:mibalan@adobe.com">
|
|
<style>
|
|
.content {
|
|
font-family: Ahem;
|
|
font-size: 20px;
|
|
line-height: 1em;
|
|
color: lime;
|
|
}
|
|
.region {
|
|
margin: .5em;
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<ol>
|
|
<li>You should see no red.</li>
|
|
<li>Test passes if you see two green squares below.</li>
|
|
</ol>
|
|
<div class="region">
|
|
<div class="content">
|
|
xxxxx<br>xxxxx<br>xxxxx<br>xxxxx<br>xxxxx
|
|
</div>
|
|
</div>
|
|
<div class="region">
|
|
<div class="content">
|
|
xxxxx<br>xxxxx<br>xxxxx<br>xxxxx<br>xxxxx
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html> |