blob: 6bc8a27f62dec4090b43054caf4eeb2f0542a931 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!DOCTYPE html>
<title>CSS Reference</title>
<link rel="author" title="Sergio Villar Senin" href="mailto:svillar@igalia.com" />
<style>
div {
background-color: green;
height: 50px;
width: 100px;
}
br { margin: 50px; }
</style>
<p>Test passes if there is <strong>no red</strong> visible on the page.</p>
<div></div>
<br>
<div></div>
|