mirror of
https://github.com/servo/servo
synced 2026-04-28 18:37:39 +02:00
36 lines
609 B
HTML
36 lines
609 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">
|
|
div
|
|
{
|
|
background-color: green;
|
|
height: 20px;
|
|
margin-left: 40px;
|
|
width: 140px;
|
|
}
|
|
|
|
div#first {margin-top: 96px}
|
|
|
|
div#second {margin-top: 80px;}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p>Test passes if there are 2 unbroken green stripes.</p>
|
|
|
|
<div id="first"></div>
|
|
|
|
<div id="second"></div>
|
|
|
|
</body>
|
|
</html> |