blob: c2ee2e78bf8c9a78d76249fb6bfa31eeae4ed685 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<!DOCTYPE html>
<html>
<title>CSS Reftest Reference</title>
<style>
.green {
color: green;
}
</style>
<body>
Filler Text
<div class="green">Filler Text</div>
<div>Filler Text</div>
<p>Test passes if the second line of "Filler Text" above is green and the first and third lines are black.</p>
</body>
</html>
|