mirror of
https://github.com/servo/servo.git
synced 2025-06-23 16:44:33 +01:00
31 lines
No EOL
974 B
HTML
31 lines
No EOL
974 B
HTML
<!DOCTYPE html>
|
|
<html><head>
|
|
<title>CSS Reftest Reference</title>
|
|
<link href="mailto:mitica@adobe.com" rel="author" title="Mihai Tica">
|
|
<link href="mailto:mibalan@adobe.com" rel="reviewer" title="Mihai Balan">
|
|
<link href="mailto:olaru@adobe.com" rel="reviewer" title="Horia Olaru">
|
|
<style type="text/css">
|
|
.parent {
|
|
position: absolute;
|
|
z-index: 1;
|
|
background: #0FF;
|
|
width: 120px;
|
|
height: 120px;
|
|
}
|
|
.child {
|
|
background: #0F0;
|
|
width: 100px;
|
|
height: 100px;
|
|
margin: 10px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<p>Test passes if you can see a lime square with aqua borders.<br>
|
|
If the borders are red, the test fails.</p>
|
|
<div class="parent">
|
|
<div class="child"></div>
|
|
</div>
|
|
|
|
|
|
</body></html> |