blob: ea97ba2a174ca4c76dc25f94f6de271eb529fa12 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<!DOCTYPE html>
<html>
<title>CSS Reftest Reference</title>
<style>
div {
color: green;
font: 2em sans-serif;
}
</style>
<body>
<p>This next line should be green:</p>
<div>TESTING</div>
</body>
</html>
|