mirror of
https://github.com/servo/servo.git
synced 2025-06-27 10:33:39 +01:00
20 lines
409 B
HTML
20 lines
409 B
HTML
<!DOCTYPE html>
|
|
<title>CSS Reference</title>
|
|
<link rel="author" title="Sergio Villar Senin" href="mailto:svillar@igalia.com" />
|
|
<style>
|
|
span {
|
|
display: inline-block;
|
|
background-color: green;
|
|
height: 225px;
|
|
width: 90px;
|
|
}
|
|
|
|
div {
|
|
border: 1px solid black;
|
|
height: 225px;
|
|
width: 300px;
|
|
}
|
|
</style>
|
|
|
|
<p>Test passes if there is <strong>no red</strong> visible on the page.</p>
|
|
<div><span></span></div>
|