mirror of
https://github.com/servo/servo
synced 2026-04-29 10:57:43 +02:00
44 lines
959 B
HTML
44 lines
959 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>CSS Reftest Reference</title>
|
|
|
|
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/">
|
|
|
|
<style type="text/css">
|
|
p {margin-top: 44px;}
|
|
|
|
div.stripe
|
|
{
|
|
height: 40px;
|
|
width: 200px;
|
|
}
|
|
|
|
div#black {background-color: black;}
|
|
|
|
div#orange {background-color: orange;}
|
|
|
|
div#blue
|
|
{
|
|
background-color: blue;
|
|
height: 10px;
|
|
width: auto;
|
|
}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p>Test passes if the following 5 conditions are met: there is a black stripe, there is an orange stripe, there is a blue line, the black stripe's bottom is touching the top of the orange stripe and the orange stripe's bottom is touching the top of the blue line.</p>
|
|
|
|
<div class="stripe" id="black"></div>
|
|
|
|
<div class="stripe" id="orange"></div>
|
|
|
|
<div id="blue"></div>
|
|
|
|
</body>
|
|
</html> |