mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
34 lines
664 B
HTML
34 lines
664 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Reftest Reference</title>
|
|
<link href="mailto:badea@adobe.com" rel="author" title="Catalin Badea">
|
|
<style>
|
|
.c1, .c2 {
|
|
font-family: Ahem;
|
|
font-size: 20px;
|
|
line-height: 1em;
|
|
}
|
|
|
|
.c1 {
|
|
color: blue;
|
|
margin-top: 20px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.c2 {
|
|
color: green;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<ul>
|
|
<li>Test passes if you see a column of three horizontal stripes with colors in the following order:
|
|
green, blue, green.</li>
|
|
<li>You shouldn't see any red.</li>
|
|
</ul>
|
|
<div class="c2">XXX</div>
|
|
<div class="c1">XXX</div>
|
|
<div class="c2">XXX</div>
|
|
|
|
|
|
</body></html> |