mirror of
https://github.com/servo/servo.git
synced 2025-06-27 10:33:39 +01:00
46 lines
No EOL
817 B
HTML
46 lines
No EOL
817 B
HTML
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
|
|
<head>
|
|
|
|
<title>CSS Reftest Reference</title>
|
|
|
|
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
|
|
|
|
<style type="text/css"><![CDATA[
|
|
p {margin: 1em auto 0em;}
|
|
|
|
div
|
|
{
|
|
background-color: green;
|
|
height: 150px;
|
|
margin: 0px 125px 125px;
|
|
padding: 100px 0px;
|
|
width: 250px;
|
|
}
|
|
|
|
div > div
|
|
{
|
|
background-color: transparent;
|
|
border: green solid 25px;
|
|
height: 100px;
|
|
padding: 0px;
|
|
position: relative;
|
|
right: 250px;
|
|
width: 500px;
|
|
}
|
|
]]></style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<p>Test passes if there is <strong>no red</strong>.</p>
|
|
|
|
<div>
|
|
<div></div>
|
|
</div>
|
|
|
|
</body>
|
|
</html> |